Skip to content

Commit

Permalink
fix: Use correct expected number of matching lines in test_count test
Browse files Browse the repository at this point in the history
  • Loading branch information
jhutar committed Jun 28, 2024
1 parent 33cf752 commit 985e6c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_cluster_read.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def test_count(self):
ri = opl.cluster_read.RequestedInfo(string)
k, v = next(ri)
self.assertEqual(k, "print.output")
self.assertEqual(v, {"all": 4, "error": 1, "warning": 1})
self.assertEqual(v, {"all": 4, "error": 2, "warning": 1})

def test_count_large(self):
string = """
Expand Down

0 comments on commit 985e6c8

Please sign in to comment.