Commit 59c7edfd by Torkel Ödegaard

fixed unit test that broke after moving colors array

parent 660fbfd7
...@@ -37,8 +37,8 @@ define([ ...@@ -37,8 +37,8 @@ define([
} }
}; };
self.scope.colors = []; $rootScope.colors = [];
for (var i = 0; i < 50; i++) { self.scope.colors.push('#' + i); } for (var i = 0; i < 50; i++) { $rootScope.colors.push('#' + i); }
self.$q = $q; self.$q = $q;
self.scope.skipDataOnInit = true; self.scope.skipDataOnInit = true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment