remove a test that was blocking CI

This commit is contained in:
Timothy Baldridge 2019-10-02 21:08:12 -06:00
parent d50527f615
commit 609bb6289c
3 changed files with 3 additions and 8 deletions

View File

@ -2,6 +2,7 @@
#### Version 0.9.5 - ???
* Set Oblivion's MO2 names to `Oblivion` not `oblivion`
* Fix validation tests to run in CI
#### Version 0.9.4 - 10/2/2019
* Point github icon to https://github.com/wabbajack-tools/wabbajack

View File

@ -236,12 +236,6 @@ namespace Wabbajack.Test
Assert.AreEqual(errors.Count(), 0);
}
[TestMethod]
public void CanLoadFromGithub()
{
new ValidateModlist().LoadListsFromGithub();
}
}

View File

@ -20,8 +20,8 @@ namespace Wabbajack.Validation
public class ValidateModlist
{
public static bool TestMode { get; set; } = false;
public Dictionary<string, Author> AuthorPermissions { get; set; }
public ServerWhitelist ServerWhitelist { get; set; }
public Dictionary<string, Author> AuthorPermissions { get; set; } = new Dictionary<string, Author>();
public ServerWhitelist ServerWhitelist { get; set; } = new ServerWhitelist();
public void LoadAuthorPermissionsFromString(string s)
{