Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 46164a7c authored by Yi Kong's avatar Yi Kong Committed by Gerrit Code Review
Browse files

Merge "Fix string-compare warning"

parents 2ee530d5 df161a4d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1093,7 +1093,7 @@ TEST_F(PrivateDnsDohTest, SessionResumption) {

        EXPECT_NO_FAILURE(expectQueries(0 /* dns */, 0 /* dot */, 2 /* doh */));
        EXPECT_EQ(doh.connections(), 3);
        EXPECT_EQ(doh.resumedConnections(), (flag == "1" ? 2 : 0));
        EXPECT_EQ(doh.resumedConnections(), (strcmp(flag, "1") ? 0 : 2));
    }
}