File tree 1 file changed +4
-4
lines changed
Firestore/core/test/unit/model 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -111,8 +111,8 @@ class ValuesTest : public ::testing::Test {
111
111
112
112
void VerifyNotEquals (std::vector<google_firestore_v1_Value>& left,
113
113
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) {
116
116
EXPECT_FALSE (Values::Equals (val1, val2));
117
117
EXPECT_FALSE (Values::Equals (val2, val1));
118
118
}
@@ -122,8 +122,8 @@ class ValuesTest : public ::testing::Test {
122
122
void VerifyOrdering (std::vector<google_firestore_v1_Value>& left,
123
123
std::vector<google_firestore_v1_Value>& right,
124
124
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) {
127
127
EXPECT_EQ (cmp, Values::Compare (val1, val2));
128
128
}
129
129
}
You can’t perform that action at this time.
0 commit comments