| 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..ddb82edf925bd418a73b9baf65463095e4b15964 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]);
|
|
|
| @@ -131,7 +131,7 @@ TEST_F(TableModelArrayControllerTest, RemoveRows) {
|
| titles = [[controller arrangedObjects] valueForKey:@"title"];
|
| EXPECT_NSEQ(@"(\n"
|
| @" BarPlugin,\n"
|
| - @" \"[*.]example.com\"\n"
|
| + @" \"[*.]moose.org\"\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]);
|
| }
|
|
|