Skip to content

Commit

Permalink
test test failure.
Browse files Browse the repository at this point in the history
  • Loading branch information
aadcg committed Nov 23, 2023
1 parent 7faf20e commit 7bd93db
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ jobs:
# - name: Load the system
# shell: bash
# run: |
# ros -e '(push (uiop:getcwd) ql:*local-project-directories*)' -e '(handler-case (ql:quickload :nsymbols) (error (a) (format t "caught error ~s~%~a~%" a a) (uiop:quit 17)))'
# ros -e '(push (uiop:getcwd) ql:*local-project-directories*)' -e '(handler-case (ql:quickload :nsymbols) (error (a) (format t "caught error ~s~%~a~%" a a) (uiop:quit 17)))'

- name: Run tests
run: |
run: >-
ros -e '(ql:quickload :lisp-unit2)' \
-e '(handler-case (asdf:test-system :nsymbols) (error (c) (uiop:quit 1)))'
2 changes: 1 addition & 1 deletion nsymbols.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
(dolist (result (results condition))
(terpri stream)
(prin1 result stream))))
(:documentation "Raised when `resolve-symbol' finds multiple symbols with `error-p' set to T.")
(:documentation "Raised when `resolve-symbol' finds multiple symbols with `error-p' set to T."))
(export 'multiple-resolved-symbols-error)

(deftype symbol-visibility ()
Expand Down
2 changes: 1 addition & 1 deletion tests/tests.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
(assert-eql 0 (length (nsymbols:package-structures :nsymbols)))
(assert-eql 3 (length (nsymbols:package-variables :nsymbols)))
(assert-eql 2 (length (nsymbols:package-variables :nsymbols :external)))
(assert-eql 1 (length (nsymbols:package-variables :nsymbols :internal))))
(assert-eql 10 (length (nsymbols:package-variables :nsymbols :internal))))

(defun hello ()
nil)
Expand Down

0 comments on commit 7bd93db

Please sign in to comment.