@@ -85,12 +85,12 @@ def test_missing_property(get_sample_graph: graph_fetcher) -> None:
85
85
),
86
86
pytest .param (
87
87
"BAD_COLLECTION_NAME_1" ,
88
- "name '0' must be a string that is a valid Python identifier" ,
88
+ "collection name '0' must be a string that is a valid Python identifier" ,
89
89
id = "BAD_COLLECTION_NAME_1" ,
90
90
),
91
91
pytest .param (
92
92
"BAD_COLLECTION_NAME_2" ,
93
- "name 'Invalid name' must be a string that is a valid Python identifier" ,
93
+ "collection name 'Invalid name' must be a string that is a valid Python identifier" ,
94
94
id = "BAD_COLLECTION_NAME_2" ,
95
95
),
96
96
pytest .param (
@@ -100,18 +100,23 @@ def test_missing_property(get_sample_graph: graph_fetcher) -> None:
100
100
),
101
101
pytest .param (
102
102
"BAD_PROPERTY_NAME_2" ,
103
- "name '0' must be a string that is a valid Python identifier" ,
103
+ "collection name '0' must be a string that is a valid Python identifier" ,
104
104
id = "BAD_PROPERTY_NAME_2" ,
105
105
),
106
+ pytest .param (
107
+ "BAD_TABLE_NAME" ,
108
+ "collection name 'invalid table_name' must be a string that is a valid Python identifier" ,
109
+ id = "BAD_TABLE_NAME" ,
110
+ ),
106
111
pytest .param (
107
112
"BAD_COLUMN_NAME" ,
108
- "name 'invalid column name' must be a string that is a valid Python identifier" ,
109
- id = "BAD_PROPERTY_NAME_2 " ,
113
+ "property name 'invalid column name' must be a string that is a valid Python identifier" ,
114
+ id = "BAD_COLUMN_NAME " ,
110
115
),
111
116
pytest .param (
112
- "BAD_TABLE_NAME " ,
113
- "name 'invalid table_name ' must be a string that is a valid Python identifier" ,
114
- id = "BAD_PROPERTY_NAME_2 " ,
117
+ "BAD_UNIQUE_PROPERTY " ,
118
+ "property name 'invalid column name ' must be a string that is a valid Python identifier" ,
119
+ id = "BAD_UNIQUE_PROPERTY " ,
115
120
),
116
121
pytest .param (
117
122
"BAD_RELATIONSHIP_NAME" ,
0 commit comments