Travis CI: Fix error during tests

This commit is contained in:
Jürg Lehni 2018-10-17 17:38:42 +02:00
parent 5b6b5225fc
commit d325fce909
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@
"del": "^2.2.1",
"gulp": "^3.9.1",
"gulp-cached": "^1.1.0",
"gulp-git-streamed": "^2.8.0",
"gulp-git-streamed": "^2.8.1",
"gulp-jshint": "^2.0.0",
"gulp-json-editor": "^2.2.1",
"gulp-prepro": "^2.4.0",

View file

@ -74,7 +74,7 @@ var test = function(testName, expected) {
// Instantiate project with 100x100 pixels canvas instead of default
// 1x1 to make interactions tests simpler by working with integers.
currentProject = new Project(CanvasProvider.getCanvas(100, 100));
currentProject = new Project(new Size(100, 100));
expected(assert);
});
};