Fix RevisionDiffIT to have the new diff cache mode as false by default

This was erroneously running the new diff cache mode twice: In the
default and useNewDiffCache modes. Setting the default to false.

See change Ia3a97599f80 which introduced the new diff cache mode.

Change-Id: I932ce746b5160ec1312a82fb8d1a982aee1f33d3
This commit is contained in:
Youssef Elghareeb
2021-02-15 17:16:12 +01:00
parent d99be5e5cd
commit a95fb148b8

View File

@@ -105,7 +105,7 @@ public class RevisionDiffIT extends AbstractDaemonTest {
baseConfig.setString("cache", "diff_intraline", "timeout", "1 minute");
intraline = baseConfig.getBoolean(TEST_PARAMETER_MARKER, "intraline", false);
useNewDiffCache = baseConfig.getBoolean("cache", "diff_cache", "useNewDiffCache", true);
useNewDiffCache = baseConfig.getBoolean("cache", "diff_cache", "useNewDiffCache", false);
ObjectId headCommit = testRepo.getRepository().resolve("HEAD");
commit1 =