nashorn/test/script/basic/JDK-8015969.js
changeset 25585 0968d8ab046a
parent 24778 2ff5d7041566
child 26071 430e39f6731f
--- a/nashorn/test/script/basic/JDK-8015969.js	Wed Jul 05 19:50:06 2017 +0200
+++ b/nashorn/test/script/basic/JDK-8015969.js	Tue Jul 15 16:54:01 2014 +0530
@@ -37,24 +37,6 @@
 'use strict';
 
 try {
-    context = 444;
-    print("FAILED!! context write should have thrown error");
-} catch (e) {
-    if (! (e instanceof TypeError)) {
-        print("TypeError expected but got " + e);
-    }
-}
-
-try {
-    engine = "hello";
-    print("FAILED!! engine write should have thrown error");
-} catch (e) {
-    if (! (e instanceof TypeError)) {
-        print("TypeError expected but got " + e);
-    }
-}
-
-try {
     delete context;
     print("FAILED!! context delete should have thrown error");
 } catch (e) {