Commit 96de1a07 authored by Evren Kutar's avatar Evren Kutar

syntax error fix

parent f787594e
...@@ -28,7 +28,7 @@ describe('form service module', function () { ...@@ -28,7 +28,7 @@ describe('form service module', function () {
function(Generator){ function(Generator){
expect(Generator.group).not.toBe(null); expect(Generator.group).not.toBe(null);
var group_json = {group_objects : {1:['email', 'name'], 2:['password']}} var group_json = {group_objects : {1:['email', 'name'], 2:['password']}};
var grouped_form = Generator.group(group_json); var grouped_form = Generator.group(group_json);
expect(grouped_form).toEqual(); expect(grouped_form).toEqual();
}]) }])
......
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