Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2622)

Unified Diff: courgette/versioning_unittest.cc

Issue 2031193002: [Courgette] Refactor BSDiff namespaces and bsdiff::search() interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sync. Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « courgette/third_party/bsdiff/qsufsort_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: courgette/versioning_unittest.cc
diff --git a/courgette/versioning_unittest.cc b/courgette/versioning_unittest.cc
index 3a3a4cbbaa1fc65deea508c306e69cf7d396f458..0257ac46ff597c5b34db8db25342bf658ecb4ca1 100644
--- a/courgette/versioning_unittest.cc
+++ b/courgette/versioning_unittest.cc
@@ -34,10 +34,10 @@ void VersioningTest::TestApplyingOldBsDiffPatch(
courgette::SinkStream generated_stream;
- courgette::BSDiffStatus status = courgette::ApplyBinaryPatch(
+ bsdiff::BSDiffStatus status = bsdiff::ApplyBinaryPatch(
&old_stream, &patch_stream, &generated_stream);
- EXPECT_EQ(status, courgette::OK);
+ EXPECT_EQ(status, bsdiff::OK);
size_t expected_length = expected_buffer.size();
size_t generated_length = generated_stream.Length();
« no previous file with comments | « courgette/third_party/bsdiff/qsufsort_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698