| Index: courgette/versioning_unittest.cc
|
| diff --git a/courgette/versioning_unittest.cc b/courgette/versioning_unittest.cc
|
| index 8e2bdfe9e4ffd3a72e57285b95bf6e82c351c621..53325925c3c0d836d4d290dc6ad049cb1160cb71 100644
|
| --- a/courgette/versioning_unittest.cc
|
| +++ b/courgette/versioning_unittest.cc
|
| @@ -13,14 +13,13 @@
|
| class VersioningTest : public BaseTest {
|
| public:
|
| void TestApplyingOldPatch(const char* src_file,
|
| - const char* patch_file,
|
| - const char* expected_file) const;
|
| + const char* patch_file,
|
| + const char* expected_file) const;
|
| };
|
|
|
| void VersioningTest::TestApplyingOldPatch(const char* src_file,
|
| const char* patch_file,
|
| const char* expected_file) const {
|
| -
|
| std::string old_buffer = FileContents(src_file);
|
| std::string new_buffer = FileContents(patch_file);
|
| std::string expected_buffer = FileContents(expected_file);
|
|
|