Skip to content

Commit

Permalink
woops
Browse files Browse the repository at this point in the history
  • Loading branch information
snewcomer committed Jul 29, 2018
1 parent 19713cf commit 87d474e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions addon/utils/computed/object-to-array.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

import { computed, get } from '@ember/object';
import { typeOf } from '@ember/utils';
import { assign } from '@ember/polyfills';
import { assign as EmberAssign } from '@ember/polyfills';
import { merge } from '@ember/polyfills'

const assign = assign || merge;
const assign = EmberAssign || merge;

/*::
import type Change from 'ember-changeset/-private/change';
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/changeset-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1177,7 +1177,7 @@ test('#cast noops if no keys are passed', function(assert) {
* #isValidating
*/

test('scott isValidating returns true when validations have not resolved', function(assert) {
test('isValidating returns true when validations have not resolved', function(assert) {
let dummyChangeset;
let _validator = () => new Promise(() => {});
let _validations = {
Expand Down

0 comments on commit 87d474e

Please sign in to comment.