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

Commit e58548e5 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix typo in parseint.untouched_on_failure test"

parents f6d707ba 958fcbdf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -121,7 +121,7 @@ TEST(parseint, untouched_on_failure) {
  ASSERT_EQ(123, i);

  unsigned int u = 123u;
  ASSERT_FALSE(android::base::ParseInt("456x", &u));
  ASSERT_FALSE(android::base::ParseUint("456x", &u));
  ASSERT_EQ(123u, u);
}