Skip to content

Commit 136e2c8

Browse files
Finish
1 parent 4f650b0 commit 136e2c8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Firestore/core/test/unit/model/values_test.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ class ValuesTest : public ::testing::Test {
111111

112112
void VerifyNotEquals(std::vector<google_firestore_v1_Value>& left,
113113
std::vector<google_firestore_v1_Value>& right) {
114-
for (const auto & val1 : left) {
115-
for (const auto & val2 : right) {
114+
for (const auto& val1 : left) {
115+
for (const auto& val2 : right) {
116116
EXPECT_FALSE(Values::Equals(val1, val2));
117117
EXPECT_FALSE(Values::Equals(val2, val1));
118118
}
@@ -122,8 +122,8 @@ class ValuesTest : public ::testing::Test {
122122
void VerifyOrdering(std::vector<google_firestore_v1_Value>& left,
123123
std::vector<google_firestore_v1_Value>& right,
124124
ComparisonResult cmp) {
125-
for (const auto & val1 : left) {
126-
for (const auto & val2 : right) {
125+
for (const auto& val1 : left) {
126+
for (const auto& val2 : right) {
127127
EXPECT_EQ(cmp, Values::Compare(val1, val2));
128128
}
129129
}

0 commit comments

Comments
 (0)