Update unit test for PHGR "/" parsing
This commit is contained in:
parent
7da09df2a6
commit
d1808cc871
|
|
@ -313,10 +313,10 @@ class DataExtentionsTC(unittest.TestCase):
|
|||
})
|
||||
|
||||
def test_PHG(self):
|
||||
body = "PHG1234Atext"
|
||||
body = "PHG1234A/text"
|
||||
remaining, parsed = parse_data_extentions(body)
|
||||
|
||||
self.assertEqual(remaining, 'text')
|
||||
self.assertEqual(remaining, '/text')
|
||||
self.assertEqual(parsed, {
|
||||
'phg': '1234A',
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in New Issue