Skip to content

Commit

Permalink
Remove flaky warning from test that's been running fine for months
Browse files Browse the repository at this point in the history
Per CR feedback
  • Loading branch information
tg-msft committed Jun 19, 2019
1 parent 29434c1 commit 00aa44c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sdk/storage/Azure.Storage.Blobs/tests/BlobUriBuilderTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ public BlobUriBuilderTests()
{
}

//TODO address the flakiness of this test.
[Test]
public void BlobUriBuilder_RoundTrip()
{
Expand All @@ -32,7 +31,7 @@ public void BlobUriBuilder_RoundTrip()
var expectedUri = WebUtility.UrlDecode(service.Uri.AbsoluteUri);
var actualUri = WebUtility.UrlDecode(blobUri.AbsoluteUri);

Assert.AreEqual(expectedUri, actualUri, "Flaky test -- potential signature generation issue not properly encoding space and + in the output");
Assert.AreEqual(expectedUri, actualUri);
}

[Test]
Expand Down

0 comments on commit 00aa44c

Please sign in to comment.