We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 316c287 commit 5a605cdCopy full SHA for 5a605cd
tests_and_examples/runQueryTests.js
@@ -190,12 +190,12 @@ class SlicingDiceTester {
190
* @param (array) column - array containing column name
191
*/
192
_appendTimestampToColumnName(column){
193
- let oldName = '"{0}'.format(column['api-name']);
+ let oldName = '"{0}"'.format(column['api-name']);
194
195
let timestamp = this._getTimestamp();
196
column['name'] += timestamp
197
column['api-name'] += timestamp
198
- let newName = '"{0}'.format(column['api-name'])
+ let newName = '"{0}"'.format(column['api-name'])
199
200
this.columnTranslation[oldName] = newName
201
}
0 commit comments