Skip to content

Commit 372fc99

Browse files
fix ci-format-test-lint
Signed-off-by: NeaguGeorgiana23 <neagugeorgiana@google.com>
1 parent 020e981 commit 372fc99

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

test/e2e/steps/minimal_steps.cpp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -223,21 +223,21 @@ WHEN(
223223
THEN(check_resolved_object,
224224
"the resolved object value should be contain fields {string}, {string}, "
225225
"and {string}, with values {string}, {string} and {int}, respectively") {
226-
std::string boolField = CUKE_ARG(1);
227-
std::string stringField = CUKE_ARG(2);
228-
std::string intField = CUKE_ARG(3);
229-
std::string boolValue = CUKE_ARG(4);
230-
std::string stringValue = CUKE_ARG(5);
231-
int64_t intValue = CUKE_ARG(6);
226+
std::string bool_field = CUKE_ARG(1);
227+
std::string string_field = CUKE_ARG(2);
228+
std::string int_field = CUKE_ARG(3);
229+
std::string bool_value = CUKE_ARG(4);
230+
std::string string_value = CUKE_ARG(5);
231+
int64_t int_value = CUKE_ARG(6);
232232
auto& state = cuke::context<openfeature_e2e::State>();
233233

234234
const std::map<std::string, openfeature::Value>* structure =
235235
state.last_evaluation_value.AsStructure();
236236
ASSERT_NE(structure, nullptr);
237237

238-
EXPECT_EQ(structure->at(boolField).AsBool().value(), (boolValue == "true"));
239-
EXPECT_EQ(structure->at(stringField).AsString().value(), stringValue);
240-
EXPECT_EQ(structure->at(intField).AsInt().value(), intValue);
238+
EXPECT_EQ(structure->at(bool_field).AsBool().value(), (bool_value == "true"));
239+
EXPECT_EQ(structure->at(string_field).AsString().value(), string_value);
240+
EXPECT_EQ(structure->at(int_field).AsInt().value(), int_value);
241241
}
242242

243243
WHEN(setup_context,

0 commit comments

Comments
 (0)