Skip to content

Commit

Permalink
Add CodeFactor analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
rfinochi committed Aug 14, 2020
1 parent f9fdf6d commit ec9332e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion Tests/Support/AttachMessagesDummyNetworkOperations.cs
Expand Up @@ -125,7 +125,6 @@ protected override Queue<string> InitData()

//results.Enqueue( "+OK" );


return results;
}

Expand Down
4 changes: 2 additions & 2 deletions Tests/Tests/Pop3ClientFixture.cs
Expand Up @@ -564,7 +564,7 @@ public async Task RetrieveOkAsync()
await pop3Client.ConnectAsync("SERVER", "USERNAME", "PASSWORD");

IEnumerable<Pop3Message> result = await pop3Client.ListAsync();
List<Pop3Message> messages = new List<Pop3Message>(result); ;
List<Pop3Message> messages = new List<Pop3Message>(result);

await pop3Client.RetrieveAsync(messages[0]);
Assert.IsTrue(messages[0].Retrieved);
Expand Down Expand Up @@ -689,7 +689,7 @@ public async Task ListAndRetrieveHeaderOkAsync()
await pop3Client.ConnectAsync("SERVER", "USERNAME", "PASSWORD");

IEnumerable<Pop3Message> result = await pop3Client.ListAndRetrieveHeaderAsync();
List<Pop3Message> messages = new List<Pop3Message>(result); ;
List<Pop3Message> messages = new List<Pop3Message>(result);

Assert.IsFalse(messages[0].Retrieved);
Assert.IsNotNull(messages[0].RawHeader);
Expand Down
1 change: 1 addition & 0 deletions readme.md
Expand Up @@ -5,6 +5,7 @@
[![CII Best Practices Summary](https://img.shields.io/cii/summary/4203?style=plastic)](https://bestpractices.coreinfrastructure.org/projects/4203)
[![Total alerts](https://img.shields.io/lgtm/alerts/github/rfinochi/pop3dotnet.svg?logo=lgtm&style=plastic)](https://lgtm.com/projects/g/rfinochi/pop3dotnet/alerts/)
[![Issues](https://img.shields.io/github/issues/rfinochi/pop3dotnet?style=plastic)](https://github.com/rfinochi/pop3dotnet/issues)
[![CodeFactor Grade](https://img.shields.io/codefactor/grade/github/rfinochi/pop3dotnet?style=plastic)][(https://www.codefactor.io/repository/github/rfinochi/pop3dotnet/overview/master)
![Code Size](https://img.shields.io/github/languages/code-size/rfinochi/pop3dotnet?style=plastic)
![Latest Release](https://img.shields.io/github/v/release/rfinochi/pop3dotnet?include_prereleases&style=plastic)
[![Latest Version](https://img.shields.io/nuget/v/Pop3.svg?style=plastic)](https://www.nuget.org/packages/Pop3)
Expand Down

0 comments on commit ec9332e

Please sign in to comment.