migrate to dotnet-format tool (#2016)

* migrate to new dotnet-format tool in build script (run on local build)
* reformat code
This commit is contained in:
Brendan Forster
2019-09-24 11:34:50 -03:00
committed by GitHub
parent aeb8d19f29
commit ce5ea64428
27 changed files with 54 additions and 124 deletions
@@ -80,7 +80,7 @@ namespace Octokit.Tests.Reactive
Assert.Throws<ArgumentNullException>(() => client.GetAll(null, "name", 1));
Assert.Throws<ArgumentNullException>(() => client.GetAll("owner", null, 1));
Assert.Throws<ArgumentNullException>(() => client.GetAll("owner", "name", 1, null));
Assert.Throws<ArgumentNullException>(() => client.GetAll("owner", "name", 1, null));
Assert.Throws<ArgumentException>(() => client.GetAll("", "name", 1));
Assert.Throws<ArgumentException>(() => client.GetAll("owner", "", 1));