fixed unit tests

This commit is contained in:
Tig
2024-03-25 15:24:57 -06:00
parent fffae452e2
commit 09c7104d07
2 changed files with 4 additions and 3 deletions

View File

@@ -816,9 +816,9 @@ public class ConfigurationManagerTests
}
[Fact]
public void UseWithoutResetAsserts ()
public void UseWithoutResetDoesNotThrow ()
{
Initialize ();
Assert.Throws<InvalidOperationException> (() => _ = Settings);
_ = Settings;
}
}