Skip to content

Commit 88ec191

Browse files
include space for map
1 parent 0068cea commit 88ec191

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests_and_examples/run_query_tests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,11 +261,12 @@ def _translate_column_names(self, json_data):
261261
for old_name, new_name in self.column_translation.items():
262262
data_string = data_string.replace(old_name, new_name)
263263
if "post-process" and "map" in data_string:
264-
column_map_name = '"time-series-integer-test-column'
264+
column_map_name = '"time-series-integer-test-column '
265265
data_string = data_string.replace(column_map_name, new_name[:-1])
266266

267267
return json.loads(data_string)
268268

269+
269270
def compare_result(self, query_type, test, result):
270271
"""Compare query expected and received results, exiting if they differ.
271272

0 commit comments

Comments
 (0)