Skip to content

Commit

Permalink
fix test for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
braingram committed Feb 27, 2024
1 parent 8550363 commit 06c786c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions asdf/_tests/test_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ def __str__(self):
af["d"] = NiceStr()
af.info()
captured = capsys.readouterr()
assert f"(BadStr){os.linesep}" in captured.out
assert f"(NewlineStr){os.linesep}" in captured.out
assert f"(CarriageReturnStr){os.linesep}" in captured.out
assert f"(NiceStr): nice{os.linesep}" in captured.out
assert "(BadStr)\n" in captured.out
assert "(NewlineStr)\n" in captured.out
assert "(CarriageReturnStr)\n" in captured.out
assert "(NiceStr): nice\n" in captured.out

0 comments on commit 06c786c

Please sign in to comment.