Skip to content

Commit d76e707

Browse files
committed
Switched to not use multiple validated models
This hit errors with the beta channel with Ember and ember-cp-validations
1 parent 97c176d commit d76e707

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/components/bs-form-element-test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ module('Integration | Component | bs form element', function(hooks) {
7272
});
7373

7474
test('valid validation is supported as expected when working with an ember-buffered-proxy model', async function(assert) {
75-
let proxiedModel = Model.create();
75+
let proxiedModel = EmberObject.create();
7676
setOwner(proxiedModel, this.owner);
7777

7878
let model = BufferedModel.create({
@@ -101,7 +101,7 @@ module('Integration | Component | bs form element', function(hooks) {
101101
});
102102

103103
test('invalid validation is supported as expected when working with an ember-buffered-proxy model', async function(assert) {
104-
let proxiedModel = Model.create();
104+
let proxiedModel = EmberObject.create();
105105
setOwner(proxiedModel, this.owner);
106106

107107
let model = BufferedModel.create({

0 commit comments

Comments
 (0)