Skip to content

Commit 5a605cd

Browse files
committed
Correct append timestamp
1 parent 316c287 commit 5a605cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests_and_examples/runQueryTests.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,12 +190,12 @@ class SlicingDiceTester {
190190
* @param (array) column - array containing column name
191191
*/
192192
_appendTimestampToColumnName(column){
193-
let oldName = '"{0}'.format(column['api-name']);
193+
let oldName = '"{0}"'.format(column['api-name']);
194194

195195
let timestamp = this._getTimestamp();
196196
column['name'] += timestamp
197197
column['api-name'] += timestamp
198-
let newName = '"{0}'.format(column['api-name'])
198+
let newName = '"{0}"'.format(column['api-name'])
199199

200200
this.columnTranslation[oldName] = newName
201201
}

0 commit comments

Comments
 (0)