Remove the @expectedFailure decorator and uncomment 'expression -- i + j" test,
as both rdar://problem/8659840 and rdar://problem/8660275 have been fixed.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@119160 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/namespace/TestNamespace.py b/test/namespace/TestNamespace.py
index c059acd..072ffbb 100644
--- a/test/namespace/TestNamespace.py
+++ b/test/namespace/TestNamespace.py
@@ -17,7 +17,6 @@
         self.buildDsym()
         self.namespace_variable_commands()
 
-    @unittest2.expectedFailure
     # rdar://problem/8659840
     # runCmd: frame variable -c -G i
     # runCmd failed!
@@ -65,8 +64,8 @@
 
         # rdar://problem/8660275
         # test/namespace: 'expression -- i+j' not working
-        #self.expect("expression -- i + j",
-        #    startstr = "(int) $0 = 7")
+        self.expect("expression -- i + j",
+            startstr = "(int) $0 = 7")
         # (int) $0 = 7
 
 if __name__ == '__main__':