diff --git a/src/dynamic-import/eval-gtbdng-indirect-update-as.case b/src/dynamic-import/eval-gtbdng-indirect-update-as.case
deleted file mode 100644
index 2b9d5d12e3710ef18071ff70e3505113b9ef6698..0000000000000000000000000000000000000000
--- a/src/dynamic-import/eval-gtbdng-indirect-update-as.case
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright (C) 2018 Rick Waldron. All rights reserved.
-// Copyright (C) 2018 the V8 project authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-/*---
-desc: >
-    Modifications to named bindings that occur after dependency has been
-    evaluated are reflected in local binding
-info: |
-    GetBindingValue (N, S)
-
-    [...]
-    3. If the binding for N is an indirect binding, then
-       a. Let M and N2 be the indirection values provided when this binding for
-          N was created.
-       b. Let targetEnv be M.[[Environment]].
-       c. If targetEnv is undefined, throw a ReferenceError exception.
-       d. Let targetER be targetEnv's EnvironmentRecord.
-       e. Return ? targetER.GetBindingValue(N2, S).
-includes: [fnGlobalObject.js]
-template: default
----*/
-
-//- params
-'./eval-gtbndng-indirect-update-as_FIXTURE.js'
-//- body
-assert.sameValue(imported.x, 1);
-
-// This function is exposed on the global scope (instead of as an imported
-// binding) in order to avoid possible false positives from assuming correct
-// behavior of the semantics under test.
-fnGlobalObject().test262update();
-
-assert.sameValue(imported.x, 2);