diff --git a/test/language/literals/string/7.8.4-31-s.js b/test/language/literals/string/7.8.4-31-s.js
deleted file mode 100644
index f4c3a2fc238802f5ee4996d6064dac29488169b9..0000000000000000000000000000000000000000
--- a/test/language/literals/string/7.8.4-31-s.js
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright (c) 2012 Ecma International.  All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/*---
-es5id: 7.8.4-31-s
-description: An OctalEscapeSequence is not allowed in a String under Strict Mode
-flags: [onlyStrict]
----*/
-
-
-assert.throws(SyntaxError, function() {
-    eval('var x = "\\" + "1";');
-});