1
0
Fork 0

fix jslint warnings

This commit is contained in:
jsteemann 2018-07-12 15:20:34 +02:00
parent 8714a9293c
commit eae9baf5a9
2 changed files with 2 additions and 2 deletions

View File

@ -145,7 +145,7 @@ function Run (testsuite) {
if (tests.length === 0) {
let err = `There is no test in testsuite "${suite.suiteName}" or your filter "${testFilter}" didn't match on anything`;
print(`${internal.COLORS.COLOR_RED}${err}${internal.COLORS.COLOR_RESET}`);
res = {
let res = {
suiteName: suite.suiteName,
message: err,
duration: 0,

View File

@ -118,7 +118,7 @@ function IResearchFeatureDDLTestSuite () {
db._create("TestCollection0");
var addLink = { links: { "TestCollection0": {} } };
view.properties(addLink, true); // partial update
properties = view.properties();
let properties = view.properties();
assertTrue(Array === properties.collections.constructor);
assertEqual(1, properties.collections.length);
db._drop("TestCollection0");