Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Octokit.Tests/Clients/MigrationsClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,7 @@ public void RequestsCorrectUrl()
client.DeleteArchive("fake", 69);

connection.Received().Delete(
Arg.Is<Uri>(u => u.ToString() == "orgs/fake/migrations/69/archive"),
Arg.Any<object>());
Arg.Is<Uri>(u => u.ToString() == "orgs/fake/migrations/69/archive"));
}

[Fact]
Expand Down
2 changes: 1 addition & 1 deletion Octokit/Clients/MigrationsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public Task DeleteArchive(string org, int id)

var endpoint = ApiUrls.EnterpriseMigrationArchive(org, id);

return ApiConnection.Delete(endpoint, new object());
return ApiConnection.Delete(endpoint);
}

/// <summary>
Expand Down