| Index: base/metrics/field_trial_unittest.cc
|
| diff --git a/base/metrics/field_trial_unittest.cc b/base/metrics/field_trial_unittest.cc
|
| index 52ce8554db06e98ff1ba88b98d8994072e491c80..e9b059a28340d1e7c74e64bbe8c633603bb0aa99 100644
|
| --- a/base/metrics/field_trial_unittest.cc
|
| +++ b/base/metrics/field_trial_unittest.cc
|
| @@ -78,8 +78,8 @@ class FieldTrialTest : public testing::Test {
|
| // Test registration, and also check that destructors are called for trials
|
| // (and that Valgrind doesn't catch us leaking).
|
| TEST_F(FieldTrialTest, Registration) {
|
| - const char* name1 = "name 1 test";
|
| - const char* name2 = "name 2 test";
|
| + const char name1[] = "name 1 test";
|
| + const char name2[] = "name 2 test";
|
| EXPECT_FALSE(FieldTrialList::Find(name1));
|
| EXPECT_FALSE(FieldTrialList::Find(name2));
|
|
|
|
|