Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7051)

Unified Diff: chrome/browser/ui/cocoa/table_model_array_controller_unittest.mm

Issue 7049007: Origin Identifier Value Map. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: " Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/table_model_array_controller_unittest.mm
diff --git a/chrome/browser/ui/cocoa/table_model_array_controller_unittest.mm b/chrome/browser/ui/cocoa/table_model_array_controller_unittest.mm
index f7ce628dcdd3bbab64f58efb5238305daf14f430..93976f2ce81e23195c2249e404d202913c633eb8 100644
--- a/chrome/browser/ui/cocoa/table_model_array_controller_unittest.mm
+++ b/chrome/browser/ui/cocoa/table_model_array_controller_unittest.mm
@@ -108,8 +108,8 @@ TEST_F(TableModelArrayControllerTest, CheckTitles) {
@" FooPlugin,\n"
@" \"[*.]example.com\",\n"
@" BarPlugin,\n"
- @" \"[*.]example.com\",\n"
- @" \"[*.]moose.org\"\n"
+ @" \"[*.]moose.org\",\n"
+ @" \"[*.]example.com\"\n"
@")",
[titles description]);
}
@@ -121,8 +121,8 @@ TEST_F(TableModelArrayControllerTest, RemoveRows) {
NSArray* titles = [[controller arrangedObjects] valueForKey:@"title"];
EXPECT_NSEQ(@"(\n"
@" BarPlugin,\n"
- @" \"[*.]example.com\",\n"
- @" \"[*.]moose.org\"\n"
+ @" \"[*.]moose.org\",\n"
+ @" \"[*.]example.com\"\n"
@")",
[titles description]);
@@ -157,8 +157,8 @@ TEST_F(TableModelArrayControllerTest, AddException) {
@" FooPlugin,\n"
@" \"[*.]example.com\",\n"
@" BarPlugin,\n"
- @" \"[*.]example.com\",\n"
@" \"[*.]moose.org\",\n"
+ @" \"[*.]example.com\",\n"
@" BlurpPlugin,\n"
@" \"[*.]example.com\"\n"
@")",
@@ -170,8 +170,8 @@ TEST_F(TableModelArrayControllerTest, AddException) {
titles = [[controller arrangedObjects] valueForKey:@"title"];
EXPECT_NSEQ(@"(\n"
@" BarPlugin,\n"
- @" \"[*.]example.com\",\n"
- @" \"[*.]moose.org\"\n"
+ @" \"[*.]moose.org\",\n"
+ @" \"[*.]example.com\"\n"
@")",
[titles description]);
}

Powered by Google App Engine
This is Rietveld 408576698