Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

print-object: remove spurious new line #40

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dkochmanski
Copy link

@dkochmanski dkochmanski commented Jan 31, 2017

Cosmetic fix. Printer is responsible for adding new lines for too expressions by itself what leads to repeating new lines when test results are printed in a list:

> (list
   (lisp-unit:run-tests :all :tests.ce1)
   (lisp-unit:run-tests :all :tests.ce2)
   (lisp-unit:run-tests :all :itests.ce3))
STUB-TEST: 1 assertions passed, 0 failed.

Unit Test Summary
 | 1 assertions total
 | 1 passed
 | 0 failed
 | 0 execution errors
 | 0 missing tests

STUB-TEST: 1 assertions passed, 0 failed.

Unit Test Summary
 | 1 assertions total
 | 1 passed
 | 0 failed
 | 0 execution errors
 | 0 missing tests

STUB-TEST: 0 assertions passed, 1 failed.

Unit Test Summary
 | 1 assertions total
 | 0 passed
 | 1 failed
 | 0 execution errors
 | 0 missing tests

(#<TEST-RESULTS-DB Total(1) Passed(1) Failed(0) Errors(0)>

 #<TEST-RESULTS-DB Total(1) Passed(1) Failed(0) Errors(0)>

 #<TEST-RESULTS-DB Total(1) Passed(0) Failed(1) Errors(0)>
)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant