rflechner / ScrapySharp

reborn of https://bitbucket.org/rflechner/scrapysharp
MIT License
346 stars 75 forks source link

Tests: Assertion parameters in incorrect order #12

Closed gregclout closed 5 years ago

gregclout commented 5 years ago

In a few places we see

    Assert.AreEqual(result.Length, 2);

Instead of

    Assert.AreEqual(2, result.Length);