Skip to content

Commit

Permalink
Revert "Fix the assert by being less sensitive to the logging level"
Browse files Browse the repository at this point in the history
This reverts commit cd4f657.
  • Loading branch information
sbesson committed Jan 22, 2024
1 parent 358524c commit a11343c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/integration/clitest/test_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,9 +245,10 @@ def test_deletebulkanns(self, capfd):
o = self.invoke(capfd)
assert "FileAnnotation:" in o

# Should have no FileAnnotation since it's deleted
# Should be empty since it's deleted
o = self.invoke(capfd)
assert "FileAnnotation:" not in o
assert o == ""
assert len(o.strip()) == 0

@pytest.mark.parametrize('report', [False, True])
def test_measures(self, capfd, report):
Expand Down

0 comments on commit a11343c

Please sign in to comment.