Skip to content

Commit 8755db7

Browse files
committed
Fix failing test_declare test
1 parent 5a8df54 commit 8755db7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_declare.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -356,5 +356,7 @@ class Table_With_Underscores(dj.Manual):
356356
"""
357357

358358
schema_any(TableNoUnderscores)
359-
with pytest.raises(dj.DataJointError, match="strict CamelCase") as e:
359+
with pytest.raises(
360+
dj.DataJointError, match="must be alphanumeric in CamelCase"
361+
) as e:
360362
schema_any(Table_With_Underscores)

0 commit comments

Comments
 (0)