Improves conformance to the Google C++ Style Guide (by Greg Miller).
This commit is contained in:
@@ -841,7 +841,7 @@ TEST(PrintStlContainerTest, HashMultiSet) {
|
||||
std::vector<int> numbers;
|
||||
for (size_t i = 0; i != result.length(); i++) {
|
||||
if (expected_pattern[i] == 'd') {
|
||||
ASSERT_TRUE(isdigit(static_cast<unsigned char>(result[i])) != 0);
|
||||
ASSERT_NE(isdigit(static_cast<unsigned char>(result[i])), 0);
|
||||
numbers.push_back(result[i] - '0');
|
||||
} else {
|
||||
EXPECT_EQ(expected_pattern[i], result[i]) << " where result is "
|
||||
|
||||
Reference in New Issue
Block a user