summaryrefslogtreecommitdiffstats
path: root/courgette/bsdiff_memory_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'courgette/bsdiff_memory_unittest.cc')
-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 fe9fae6..f1718e2 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(std::string(), std::string());
+ GenerateAndTestPatch("", "");
}
TEST_F(BSDiffMemoryTest, TestEmptyVsNonempty) {
- GenerateAndTestPatch(std::string(), "xxx");
+ GenerateAndTestPatch("", "xxx");
}
TEST_F(BSDiffMemoryTest, TestNonemptyVsEmpty) {
- GenerateAndTestPatch("xxx", std::string());
+ GenerateAndTestPatch("xxx", "");
}
TEST_F(BSDiffMemoryTest, TestSmallInputsWithSmallChanges) {