Skip to content

Commit

Permalink
change
Browse files Browse the repository at this point in the history
  • Loading branch information
madhurajayaraman committed Nov 16, 2023
1 parent a403c77 commit 8e56b66
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion starboard/nplb/string_compare_no_case_n_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ TEST(SbStringCompareNoCaseNTest, SunnyDayCase) {
EXPECT_EQ(0,
SbStringCompareNoCaseN(kString4, kString3, strlen(kString4) / 2));
}
#endif // SB_API_VERSION < 16
#endif // SB_API_VERSION < 16

} // namespace
} // namespace nplb
Expand Down
2 changes: 1 addition & 1 deletion starboard/nplb/string_compare_no_case_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ TEST(SbStringCompareNoCaseTest, SunnyDayCase) {
EXPECT_EQ(0, SbStringCompareNoCase(kString1, kString2));
EXPECT_EQ(0, SbStringCompareNoCase(kString2, kString1));
}
#endif // SB_API_VERSION < 16
#endif // SB_API_VERSION < 16
} // namespace
} // namespace nplb
} // namespace starboard
4 changes: 2 additions & 2 deletions starboard/nplb/string_duplicate_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ void RunTest(const char* input) {
char* dupe = SbStringDuplicate(input);
const char* kNull = NULL;
EXPECT_NE(kNull, dupe);
#if SB_API_VERSION < 16
#if SB_API_VERSION < 16
EXPECT_EQ(0, SbStringCompareNoCase(input, dupe));
#endif //SB_API_VERSION < 16
#endif // SB_API_VERSION < 16
EXPECT_EQ(strlen(input), strlen(dupe));
SbMemoryDeallocate(dupe);
}
Expand Down

0 comments on commit 8e56b66

Please sign in to comment.