Skip to content

Commit 8163a9e

Browse files
change the format to get all data
1 parent 591263b commit 8163a9e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests_and_examples/run_query_tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,12 +147,12 @@ def _append_timestamp_to_column_name(self, column):
147147
column -- Dictionary containing column data, such as "name" and
148148
"api-name".
149149
"""
150-
old_name = '"{}"'.format(column['api-name'])
150+
old_name = '{}'.format(column['api-name'])
151151

152152
timestamp = self._get_timestamp()
153153
column['name'] += timestamp
154154
column['api-name'] += timestamp
155-
new_name = '"{}"'.format(column['api-name'])
155+
new_name = '{}'.format(column['api-name'])
156156

157157
self.column_translation[old_name] = new_name
158158

0 commit comments

Comments
 (0)