Skip to content

Commit

Permalink
test: Fix the assertions in test_orchestrate for new output.
Browse files Browse the repository at this point in the history
gkapfham committed Jul 6, 2019
1 parent 10247a9 commit a944fbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_orchestrate.py
Original file line number Diff line number Diff line change
@@ -354,7 +354,7 @@ def test_perform_actions_display_welcome_and_ready_check_regex_file(
counted_newlines = captured.out.count("\n")
assert "GatorGrader" in captured.out
assert "regular expression" in captured.out
assert "Found 0 matches" in captured.out
assert "Found 0 match(es)" in captured.out
assert counted_newlines == 7
assert exit_code == 1

@@ -401,7 +401,7 @@ def test_perform_actions_display_welcome_and_ready_check_regex_command(
counted_newlines = captured.out.count("\n")
assert "GatorGrader" in captured.out
assert "regular expression" in captured.out
assert "Found 0 matches" in captured.out
assert "Found 0 match(es)" in captured.out
assert counted_newlines == 7
assert exit_code == 1

0 comments on commit a944fbd

Please sign in to comment.