Googletest export

Fix a comment in a code snippet.

PiperOrigin-RevId: 374504337
This commit is contained in:
Abseil Team 2021-05-18 14:20:10 -07:00 committed by Dino Radaković
parent eb6e9273dc
commit aa9b44a186

View File

@ -3363,7 +3363,7 @@ or,
```cpp
using ::testing::Not;
...
// Verifies that two values are divisible by 7.
// Verifies that a value is divisible by 7 and the other is not.
EXPECT_THAT(some_expression, IsDivisibleBy7());
EXPECT_THAT(some_other_expression, Not(IsDivisibleBy7()));
```