Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Dec 11, 2019
1 parent 96f20b8 commit d4d4207
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/Verify.Xunit/Verify.Xunit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="ProjectDefaults" Version="1.0.34" PrivateAssets="All" />
<PackageReference Include="Nullable" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" Condition="$(Configuration) == 'Release'" />
<ProjectReference Include="..\Verify\Verify.csproj" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/Verify.Xunit/VerifyBase_Inner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public async Task Verify(string input, string extension)
}
}

throw VerificationNotFoundException(verifiedPath,exceptionBuilder);
throw VerificationNotFoundException(verifiedPath, exceptionBuilder);
}

var verifiedText = await FileHelpers.ReadText(verifiedPath);
Expand Down
2 changes: 1 addition & 1 deletion src/Verify.Xunit/VerifyBase_Stream.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public async Task VerifyBinary(IEnumerable<Stream> streams, string extension = "
throw exceptionBuilder(builder.ToString());
}

Exception VerificationNotFoundException(string verifiedPath, Func<string, Exception> exceptionBuilder)
static Exception VerificationNotFoundException(string verifiedPath, Func<string, Exception> exceptionBuilder)
{
var verifiedFile = Path.GetFileName(verifiedPath);
if (BuildServerDetector.Detected)
Expand Down
1 change: 1 addition & 0 deletions src/Verify/Verify.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<PackageReference Include="TextCopy" Version="2.0.0-beta.3" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="ProjectDefaults" Version="1.0.34" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" Condition="$(Configuration) == 'Release'" />
<PackageReference Include="Nullable" Version="1.1.1" PrivateAssets="All" />
<None Include="EmptyFiles\empty.*">
<Pack>true</Pack>
Expand Down

0 comments on commit d4d4207

Please sign in to comment.