Skip to content

Commit 331a4a6

Browse files
committed
Fix tests
1 parent 39df45e commit 331a4a6

File tree

1 file changed

+2
-2
lines changed
  • packages/@ember/-internals/runtime/tests/system/native_array

1 file changed

+2
-2
lines changed

packages/@ember/-internals/runtime/tests/system/native_array/a_test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ if (!ENV.EXTEND_PROTOTYPES.Array) {
3131
moduleFor(
3232
'Ember.A without Extended Prototypes',
3333
class extends AbstractTestCase {
34-
['@test Ember.A does not modify original'](assert) {
34+
['@feature(EMBER_A_NON_MODIFYING) Ember.A does not modify original'](assert) {
3535
let original = [1, 2];
3636
let proxy = A(original);
3737

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

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

0 commit comments

Comments
 (0)