Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/c8c67a825440b5acb7eebdbe81b3decd79b36b51 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed broken test

pull/25/head
Mark McDowall 12 years ago
parent 6ca17942f0
commit c8c67a8254

@ -36,6 +36,10 @@ namespace NzbDrone.Common.Test
"Users",
"Windows"
};
Mocker.GetMock<IDiskProvider>()
.SetupGet(s => s.SpecialFolders)
.Returns(new HashSet<string> { "$recycle.bin", "system volume information", "recycler" });
}
private void SetupFolders(string root)
@ -96,7 +100,11 @@ namespace NzbDrone.Common.Test
.Setup(s => s.GetDirectories(It.IsAny<String>()))
.Returns(_folders.ToArray());
Subject.LookupSubDirectories(root).Should().HaveCount(_folders.Count - 2);
var result = Subject.LookupSubDirectories(root);
result.Should().HaveCount(_folders.Count - 2);
result.Should().NotContain(RECYCLING_BIN);
result.Should().NotContain(SYSTEM_VOLUME_INFORMATION);
}
}
}

Loading…
Cancel
Save