| Index: test/mjsunit/allocation-site-info.js
|
| diff --git a/test/mjsunit/allocation-site-info.js b/test/mjsunit/allocation-site-info.js
|
| index dd22f573f0715ff5053b215d2e6825dad90fcded..07aba55ea038e898c5fa16cfda6fdcaf24f99091 100644
|
| --- a/test/mjsunit/allocation-site-info.js
|
| +++ b/test/mjsunit/allocation-site-info.js
|
| @@ -321,9 +321,9 @@ if (support_smi_only_arrays) {
|
| obj = newarraycase_onearg(0, 5);
|
| assertKind(elements_kind.fast_double, obj);
|
| // Now pass a length that forces the dictionary path.
|
| - obj = newarraycase_onearg(100000, 5);
|
| + obj = newarraycase_onearg(100001, 5);
|
| assertKind(elements_kind.dictionary, obj);
|
| - assertTrue(obj.length == 100000);
|
| + assertTrue(obj.length == 100001);
|
|
|
| // Verify that cross context calls work
|
| var realmA = Realm.current();
|
|
|