فهرست منبع

fixed failing unit test

Torkel Ödegaard 11 سال پیش
والد
کامیت
da13de6af5
1فایلهای تغییر یافته به همراه3 افزوده شده و 2 حذف شده
  1. 3 2
      src/test/specs/gfunc-specs.js

+ 3 - 2
src/test/specs/gfunc-specs.js

@@ -20,8 +20,9 @@ define([
     });
     });
 
 
     it('should return func instance from funcDef', function() {
     it('should return func instance from funcDef', function() {
-      var func = gfunc.createFuncInstance(func.def);
-      expect(func).to.be.ok();
+      var func = gfunc.createFuncInstance('sum');
+      var func2 = gfunc.createFuncInstance(func.def);
+      expect(func2).to.be.ok();
     });
     });
 
 
     it('func instance should have text representation', function() {
     it('func instance should have text representation', function() {