| Index: ash/shelf/shelf_model_unittest.cc
|
| diff --git a/ash/shelf/shelf_model_unittest.cc b/ash/shelf/shelf_model_unittest.cc
|
| index 12177d7dd60336a9eaf00533fd1c24979229194d..1324b11b6f14e769aac31137bfe6d0a4742c684f 100644
|
| --- a/ash/shelf/shelf_model_unittest.cc
|
| +++ b/ash/shelf/shelf_model_unittest.cc
|
| @@ -15,6 +15,8 @@ namespace ash {
|
|
|
| namespace {
|
|
|
| +constexpr char kAppListId[] = "jlfapfmkapbjlfbpjedlinehodkccjee";
|
| +
|
| // ShelfModelObserver implementation that tracks what message are invoked.
|
| class TestShelfModelObserver : public ShelfModelObserver {
|
| public:
|
| @@ -69,7 +71,7 @@ class ShelfModelTest : public testing::Test {
|
|
|
| ShelfItem item;
|
| item.type = TYPE_APP_LIST;
|
| - item.id = ShelfID("AppListId");
|
| + item.id = ShelfID(kAppListId);
|
| model_->Add(item);
|
| EXPECT_EQ(1, model_->item_count());
|
|
|
|
|