Commit e116defc authored by Marc Gravell's avatar Marc Gravell

Merge pull request #384 from DeRauk/master

Fixed build error caused by TryGetAzureRoleInstanceIdNoThrow test
parents f272cdbc cedca528
......@@ -139,13 +139,6 @@ public void DefaultClientName()
}
}
[Test]
public void TryGetAzureRoleInstanceIdNoThrow()
{
ConfigurationOptions config = new ConfigurationOptions();
Assert.IsNull(config.TryGetAzureRoleInstanceIdNoThrow());
}
[Test]
public void ReadConfigWithConfigDisabled()
{
......
......@@ -117,5 +117,11 @@ public void CheckFailureRecovered()
ClearAmbientFailures();
}
}
[Test]
public void TryGetAzureRoleInstanceIdNoThrow()
{
Assert.IsNull(ConnectionMultiplexer.TryGetAzureRoleInstanceIdNoThrow());
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment