summaryrefslogtreecommitdiff
path: root/tests/time_test.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2020-07-31 10:35:03 -0700
committerElliott Hughes <enh@google.com>2020-07-31 10:35:03 -0700
commitcf346532fccbe35666b827fbbfd2cb951dd00dc2 (patch)
treec1ab59c29e63dea1700f24edb6bfad28c9d0687f /tests/time_test.cpp
parentb1d27cab96c7aa31470ed2a1a8b284f9422cef25 (diff)
More cleanup for #inclusivefixit.
Found manually with grep, since the script seems to miss stuff. Test: treehugger Change-Id: I5933cbade9792801d4a0bec1ccb077efa6ad8fbc
Diffstat (limited to 'tests/time_test.cpp')
-rw-r--r--tests/time_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/time_test.cpp b/tests/time_test.cpp
index 74d691dc9..5a977c26c 100644
--- a/tests/time_test.cpp
+++ b/tests/time_test.cpp
@@ -142,7 +142,7 @@ TEST(time, mktime_10310929) {
t.tm_mday = 10;
#if !defined(__LP64__)
- // 32-bit bionic stupidly had a signed 32-bit time_t.
+ // 32-bit bionic has a signed 32-bit time_t.
ASSERT_EQ(-1, mktime(&t));
ASSERT_EQ(EOVERFLOW, errno);
#else