mirror of https://github.com/micromata/borgbackup-butler.git

Kai Reinhard
15.35.2019 746d3376c6b11a2202d3c19745bc45ea76c20a94
borgbutler-server/src/test/java/de/micromata/borgbutler/server/BorgInstallationTest.java
@@ -14,7 +14,7 @@
    @Test
    void foo() throws Exception {
        ConfigurationHandler.getConfiguration().setBorgCommand("hurzel");
        ConfigurationHandler.getConfiguration().setBorgCommand(null);
        BorgInstallation borgInstallation = BorgInstallation.getInstance();
        borgInstallation.initialize();
        ConfigurationHandler.getConfiguration().setBorgCommand("borg");
@@ -23,7 +23,7 @@
    @Test
    void downloadTest() {
        String version = ConfigurationHandler.getConfiguration().getBinariesDownloadVersion();
        String version = new BorgVersion().getBinariesDownloadVersion();
        checkDownload(RunningMode.OSType.LINUX, "borg-linux64-" + version);
        checkDownload(RunningMode.OSType.MAC_OS, "borg-macosx64-" + version);
        checkDownload(RunningMode.OSType.FREEBSD, "borg-freebsd64-" + version);