fix a problem causing us to lose the ''s around objc interface names
in a diagnostic.
llvm-svn: 100956
diff --git a/clang/test/SemaObjC/warn-selector-selection.m b/clang/test/SemaObjC/warn-selector-selection.m
index 96ed77c..e395f43 100644
--- a/clang/test/SemaObjC/warn-selector-selection.m
+++ b/clang/test/SemaObjC/warn-selector-selection.m
@@ -10,5 +10,5 @@
void foo(void) {
Object *obj;
- [obj setWindow:0]; // expected-warning{{Object may not respond to 'setWindow:'}}
+ [obj setWindow:0]; // expected-warning{{'Object' may not respond to 'setWindow:'}}
}