Fixed build break

This commit is contained in:
Kiran Challa 2016-04-18 16:19:22 -07:00
parent 426c61c81e
commit 4c2c1d939b
1 changed files with 1 additions and 1 deletions

View File

@ -470,7 +470,7 @@ namespace E2ETests
await ThrowIfResponseStatusNotOk(response);
var responseContent = await response.Content.ReadAsStringAsync();
Assert.Contains(albumName, responseContent, StringComparison.OrdinalIgnoreCase);
Assert.Contains("<span class=\"glyphicon glyphicon glyphicon-shopping-cart\"></span>", responseContent, StringComparison.OrdinalIgnoreCase);
Assert.Contains("<span class=\"glyphicon glyphicon-shopping-cart\"></span>", responseContent, StringComparison.OrdinalIgnoreCase);
_logger.LogInformation("Verified that album is added to cart");
}