Remove the @expectedFailure decorator as rdar://problem/8668674 is fixed.

llvm-svn: 136650
diff --git a/lldb/test/lang/cpp/namespace/TestNamespace.py b/lldb/test/lang/cpp/namespace/TestNamespace.py
index af79043..0850b9a 100644
--- a/lldb/test/lang/cpp/namespace/TestNamespace.py
+++ b/lldb/test/lang/cpp/namespace/TestNamespace.py
@@ -12,7 +12,6 @@
     mydir = os.path.join("lang", "cpp", "namespace")
 
     # rdar://problem/8668674
-    @unittest2.expectedFailure
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     def test_with_dsym_and_run_command(self):
         """Test that anonymous and named namespace variables display correctly."""
@@ -20,7 +19,6 @@
         self.namespace_variable_commands()
 
     # rdar://problem/8668674
-    @unittest2.expectedFailure
     def test_with_dwarf_and_run_command(self):
         """Test that anonymous and named namespace variables display correctly."""
         self.buildDwarf()
@@ -102,9 +100,9 @@
 
         # rdar://problem/8668674
         # expression command with fully qualified namespace for a variable does not work
-        self.expect("expression -- '::i'", VARIABLES_DISPLAYED_CORRECTLY,
+        self.expect("expression -- ::i", VARIABLES_DISPLAYED_CORRECTLY,
             patterns = [' = 3$'])
-        self.expect("expression -- 'A::B::j'", VARIABLES_DISPLAYED_CORRECTLY,
+        self.expect("expression -- A::B::j", VARIABLES_DISPLAYED_CORRECTLY,
             patterns = [' = 4$'])