Skip to content

Commit

Permalink
Merge branch 'release/1.0.15'
Browse files Browse the repository at this point in the history
  • Loading branch information
belidzs committed Nov 6, 2018
2 parents d9c8764 + b7b8da7 commit 12795ed
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions MailgunAddressValidator/MailgunAddressValidator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="RestSharp, Version=106.0.1.0, Culture=neutral, PublicKeyToken=598062e77f915f75, processorArchitecture=MSIL">
<HintPath>..\packages\RestSharp.106.0.1\lib\net452\RestSharp.dll</HintPath>
<Reference Include="RestSharp, Version=106.5.4.0, Culture=neutral, PublicKeyToken=598062e77f915f75, processorArchitecture=MSIL">
<HintPath>..\packages\RestSharp.106.5.4\lib\net452\RestSharp.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
2 changes: 1 addition & 1 deletion MailgunAddressValidator/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="RestSharp" version="106.0.1" targetFramework="net452" />
<package id="RestSharp" version="106.5.4" targetFramework="net452" />
</packages>
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public void ValidateValidAddress()
[Test]
public void ValidateInvalidAddress()
{
ValidationResult result = Validator.Validate("test@example.com", apikey);
ValidationResult result = Validator.Validate("test@nonexistentdomain.com", apikey);
Assert.That(result.IsValid, Is.False);
}

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 12795ed

Please sign in to comment.