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]); |
} |