You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"name must be a string that is a Python identifier",
88
+
"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 must be a string that is a Python identifier",
93
+
"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(
97
97
"BAD_PROPERTY_NAME_1",
98
-
"namemust be a string that is a Python identifier",
98
+
"property 'bad name' of simple table collection 'table_name' in graph 'BAD_PROPERTY_NAME_1' must be a JSON object containing a field 'type' and field 'type' must be a string",
99
99
id="BAD_PROPERTY_NAME_1",
100
100
),
101
101
pytest.param(
102
102
"BAD_PROPERTY_NAME_2",
103
-
"name must be a string that is a Python identifier",
103
+
"name '0' must be a string that is a valid Python identifier",
104
+
id="BAD_PROPERTY_NAME_2",
105
+
),
106
+
pytest.param(
107
+
"BAD_COLUMN_NAME",
108
+
"name 'invalid column name' must be a string that is a valid Python identifier",
109
+
id="BAD_PROPERTY_NAME_2",
110
+
),
111
+
pytest.param(
112
+
"BAD_TABLE_NAME",
113
+
"name 'invalid table_name' must be a string that is a valid Python identifier",
0 commit comments