@@ -175,12 +175,11 @@ def test_cp6703():
 if globals().Contains(System.Collections.Generic.KeyValuePair[object,object]("c", "blah")): count += 1
 if globals().Contains(System.Collections.Generic.KeyValuePair[object,object]("d", int(3))): count += 1
 if globals().Contains(System.Collections.Generic.KeyValuePair[object,object]("d", 3)): count += 1
-if globals().Contains(System.Collections.Generic.KeyValuePair[object,object]("d", "3")): count += 1
 if globals().Contains(System.Collections.Generic.KeyValuePair[object,object]("a", 2)): count += 1
 '''
     s = pe.CreateScope()
     pe.Execute(stuff, s)
-    AreEqual(s.count, 6)
+    AreEqual(s.count, 5)
     
 
 def test_cp20594():