summaryrefslogtreecommitdiffstats
path: root/courgette
diff options
context:
space:
mode:
Diffstat (limited to 'courgette')
-rw-r--r--courgette/bsdiff_memory_unittest.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/courgette/bsdiff_memory_unittest.cc b/courgette/bsdiff_memory_unittest.cc
index f1718e2..fe9fae6 100644
--- a/courgette/bsdiff_memory_unittest.cc
+++ b/courgette/bsdiff_memory_unittest.cc
@@ -51,15 +51,15 @@ std::string BSDiffMemoryTest::GenerateSyntheticInput(size_t length, int seed)
}
TEST_F(BSDiffMemoryTest, TestEmpty) {
- GenerateAndTestPatch("", "");
+ GenerateAndTestPatch(std::string(), std::string());
}
TEST_F(BSDiffMemoryTest, TestEmptyVsNonempty) {
- GenerateAndTestPatch("", "xxx");
+ GenerateAndTestPatch(std::string(), "xxx");
}
TEST_F(BSDiffMemoryTest, TestNonemptyVsEmpty) {
- GenerateAndTestPatch("xxx", "");
+ GenerateAndTestPatch("xxx", std::string());
}
TEST_F(BSDiffMemoryTest, TestSmallInputsWithSmallChanges) {