Fix a missing check in TestStrings.cpp, no bug

This commit is contained in:
Ehsan Akhgari 2015-04-18 20:51:01 -04:00
parent 486776b743
commit 946466ced9

View File

@ -44,6 +44,7 @@ TEST(Strings, test1)
nsAutoString buf(aStr);
int32_t n = buf.FindChar(',');
EXPECT_EQ(n, kNotFound);
n = buf.Length();