Fix a broken README.md test

This commit is contained in:
Haacked
2014-12-30 00:57:43 -08:00
parent 47e67e9382
commit fdd9073e43
@@ -36,7 +36,7 @@ namespace Octokit.Tests.Clients
null);
var htmlReadme = await readme.GetHtmlContent();
Assert.Equal("<html>README</html>", htmlReadme);
connection.Received().GetHtml(Arg.Is<Uri>(u => u.ToString() == "https://github.example.com/readme"), null);
connection.Received().GetHtml(Arg.Is<Uri>(u => u.ToString() == "https://github.example.com/readme.md"), null);
}
}