Remove broken tests

This commit is contained in:
Aaron Lichtman 2024-01-15 15:30:32 -08:00
parent 23ae0fa1cc
commit 53377f3206
No known key found for this signature in database
GPG key ID: D046D019DC745EDA
2 changed files with 7 additions and 49 deletions

View file

@ -84,15 +84,8 @@ def output_should_not_contain(expected_output, cli_run):
@then(parse("the output should be\n{expected_output}"))
@then(parse('the output should be "{expected_output}"'))
def output_should_be(expected_output, cli_run):
from pprint import pprint
actual = cli_run["stdout"].strip()
print("ACTUAL: \n\n")
print(type(actual))
pprint(actual)
expected = expected_output.strip()
print("EXPECTED: \n\n")
print(type(expected))
pprint(expected)
assert actual == expected