Skip to content

Commit

Permalink
Remove tests for case-insensitive pics - we don't want this
Browse files Browse the repository at this point in the history
  • Loading branch information
cecille committed Jan 16, 2024
1 parent cb6f03e commit 298f435
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/python_testing/TestMatterTestingSupport.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ async def test_type_checking(self):
async def test_pics_support(self):
pics_list = ['TEST.S.A0000=1',
'TEST.S.A0001=0',
'lower.s.a0000=1',
'',
' ',
'# comment',
Expand All @@ -148,10 +147,8 @@ async def test_pics_support(self):

asserts.assert_true(self.check_pics("TEST.S.A0000"), "PICS parsed incorrectly for TEST.S.A0000")
asserts.assert_false(self.check_pics("TEST.S.A0001"), "PICS parsed incorrectly for TEST.S.A0001")
asserts.assert_true(self.check_pics("LOWER.S.A0000"), "PICS pased incorrectly for LOWER.S.A0000")
asserts.assert_true(self.check_pics("SPACE.S.A0000"), "PICS parsed incorrectly for SPACE.S.A0000")
asserts.assert_false(self.check_pics("NOT.S.A0000"), "PICS parsed incorrectly for NOT.S.A0000")
asserts.assert_true(self.check_pics(" test.s.a0000"), "PICS checker lowercase handled incorrectly")

# invalid pics file should throw a value error
pics_list.append("BAD.S.A000=5")
Expand Down

0 comments on commit 298f435

Please sign in to comment.