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 7636b9d commit 9fda5a7Copy full SHA for 9fda5a7
src/ServiceControl.Persistence.Tests/EnsureSettingsInContainer.cs
@@ -13,7 +13,7 @@ public void CheckForBothTypes()
13
var baseSettings = ServiceProvider.GetRequiredService<PersistenceSettings>();
14
15
var actualType = baseSettings.GetType();
16
- Assert.That(typeof(PersistenceSettings), Is.Not.EqualTo(actualType));
+ Assert.That(actualType, Is.Not.EqualTo(typeof(PersistenceSettings)));
17
18
// Persistence implementation must also register the same singleton as the persister-specific type
19
var settingsAsActualType = ServiceProvider.GetRequiredService(actualType);
0 commit comments