Skip to content

Commit

Permalink
(maint) Remove unnecessary code
Browse files Browse the repository at this point in the history
  • Loading branch information
gep13 committed Nov 10, 2023
1 parent 8e815ca commit fb645af
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using GitReleaseManager.Core.Provider;
using NUnit.Framework;
using Octokit;
using Serilog;
using Shouldly;
using Issue = GitReleaseManager.Core.Model.Issue;
using Milestone = GitReleaseManager.Core.Model.Milestone;
Expand All @@ -24,7 +23,6 @@ public class GitHubProviderIntegrationTests
private GitHubProvider _gitHubProvider;
private IGitHubClient _gitHubClient;
private IMapper _mapper;
private ILogger _logger;

private string _token;
private string _releaseBaseTag;
Expand All @@ -43,7 +41,6 @@ public void OneTimeSetUp()
}

_mapper = AutoMapperConfiguration.Configure();
_logger = new LoggerConfiguration().WriteTo.Console().CreateLogger();
_gitHubClient = new GitHubClient(new ProductHeaderValue("GitReleaseManager")) { Credentials = new Credentials(_token) };
_gitHubProvider = new GitHubProvider(_gitHubClient, _mapper);
}
Expand Down

0 comments on commit fb645af

Please sign in to comment.