Skip to content

Commit

Permalink
fix form-test modelName
Browse files Browse the repository at this point in the history
  • Loading branch information
zhyq0826 committed Jan 13, 2016
1 parent e48d06b commit 8e63fbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/mixins/form-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ module('Unit | Mixin | form');
// Replace this with your real tests.
test('formComponent object init', function(assert) {
let FormObject = Ember.Object.extend(formComponent);
let subject = FormObject.create();
let subject = FormObject.create({modelName: 'user'});
assert.ok(subject);
});


test('godForm object init', function(assert) {
let GodFormObject = Ember.Object.extend(godForm);
let subject = GodFormObject.create();
let subject = GodFormObject.create({modelName: 'user'});
assert.ok(subject);
});

0 comments on commit 8e63fbf

Please sign in to comment.