We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b2495b commit 18f1c99Copy full SHA for 18f1c99
test/LibraryManager.Test/LibraryInstallationStateTest.cs
@@ -157,9 +157,8 @@ public async Task IsValidAsync_State_HasUnknownLibraryFile()
157
158
OperationResult<LibraryInstallationGoalState> result = await state.IsValidAsync(_dependencies);
159
160
- // IsValidAsync does not validate library files
161
- // Issue https://github.com/aspnet/LibraryManager/issues/254 should fix that
162
- Assert.IsTrue(result.Success);
+ Assert.IsFalse(result.Success);
+ Assert.AreEqual("LIB018", result.Errors[0].Code);
163
}
164
165
[TestMethod]
0 commit comments