diff options
Diffstat (limited to 'stack-question-list.el')
-rw-r--r-- | stack-question-list.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/stack-question-list.el b/stack-question-list.el index f565490..7053339 100644 --- a/stack-question-list.el +++ b/stack-question-list.el @@ -25,7 +25,6 @@ (require 'stack-question) (require 'tabulated-list) (require 'cl-lib) -(load "test/tests.el") ;;; Customization @@ -144,7 +143,7 @@ Letters do not insert themselves; instead, they are commands. If REDISPLAY is non-nil, also call `tabulated-list-print'." (interactive '(t)) ;; Obviously this needs to be changed. - (let ((question-list (stack-test-sample-data "questions" "test"))) + (let ((question-list (stack-core-make-request "questions"))) ;; Print the result. (setq tabulated-list-entries (mapcar #'stack-question-list--print-info question-list))) |