Skip to content

Commit

Permalink
Test error message fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tg-msft committed Jul 2, 2019
1 parent 32ff3a3 commit 371215b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/core/Azure.Core/tests/ClientTestBaseTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public void ThrowsForSyncCallsInAsyncContext()
{
var client = InstrumentClient(new TestClient());
var exception = Assert.Throws<InvalidOperationException>(() => client.Method(123));
Assert.AreEqual("Async method call expected", exception.Message);
Assert.AreEqual("Async method call expected for Method", exception.Message);
}
}

Expand Down

0 comments on commit 371215b

Please sign in to comment.