Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wagenet committed Jan 11, 2024
1 parent ac45479 commit dd75266
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ if (!ENV.EXTEND_PROTOTYPES.Array) {
moduleFor(
'Ember.A without Extended Prototypes',
class extends AbstractTestCase {
['@test Ember.A does not modify original'](assert) {
['@feature(EMBER_A_NON_MODIFYING) Ember.A does not modify original'](assert) {
let original = [1, 2];
let proxy = A(original);

Expand All @@ -55,7 +55,7 @@ if (!ENV.EXTEND_PROTOTYPES.Array) {
assert.deepEqual(original, [1, 2, 3, 4, 5], 'pushObjects works');
}

['@test Ember.A adds warnings about modification to original']() {
['@feature(EMBER_A_NON_MODIFYING) Ember.A adds warnings about modification to original']() {
let original = [1, 2];
A(original);

Expand Down

0 comments on commit dd75266

Please sign in to comment.