File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -80,13 +80,13 @@ TEST(ConfigTest, BasicOperations) {
8080 config.set (TestConfig::INT_CONFIG, 100 );
8181 config.set (TestConfig::BOOL_CONFIG, true );
8282 config.set (TestConfig::ENUM_CONFIG, TestEnum::VALUE2);
83- config.set (TestConfig::DOUBLE_CONFIG, 2.71828 );
83+ config.set (TestConfig::DOUBLE_CONFIG, 2.99 );
8484
8585 ASSERT_EQ (config.get (TestConfig::STRING_CONFIG), " new_value" );
8686 ASSERT_EQ (config.get (TestConfig::INT_CONFIG), 100 );
8787 ASSERT_EQ (config.get (TestConfig::BOOL_CONFIG), true );
8888 ASSERT_EQ (config.get (TestConfig::ENUM_CONFIG), TestEnum::VALUE2);
89- ASSERT_EQ (config.get (TestConfig::DOUBLE_CONFIG), 2.71828 );
89+ ASSERT_EQ (config.get (TestConfig::DOUBLE_CONFIG), 2.99 );
9090
9191 // Test unsetting a value
9292 config.unset (TestConfig::INT_CONFIG);
You can’t perform that action at this time.
0 commit comments