Skip to content

Commit

Permalink
4th time is a charm for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkis117 committed Jan 8, 2017
1 parent 0fedac3 commit cb83076
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ skip_tags: true
image: Visual Studio 2015
configuration: Release
install:
- mklink /J Data "test/GenericMvc.Tests/Data/FileRepo"
- mklink /J Data "test/GenericMvc.Tests/Data"
- ps: mkdir -Force ".\build\" | Out-Null
- ps: Invoke-WebRequest "https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0-preview2/scripts/obtain/dotnet-install.ps1" -OutFile ".\build\installcli.ps1"
- ps: $env:DOTNET_INSTALL_DIR = "$pwd\.dotnetcli"
Expand Down
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
4 changes: 2 additions & 2 deletions test/GenericMvc.Tests/Repositories/FileRepoTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace GenericMvcTests
/// </summary>
public class FileRepoTests : IDisposable //, IRepositoryTests
{
public const string TestFolder = "./Data/FileRepo";
public const string TestFolder = "./Data";

public const string TestName = "test.png";

Expand Down Expand Up @@ -120,7 +120,7 @@ public async Task Any()

Assert.True(fileExists);

var madeUpName = await FileRepo.Any(x => x.Name == "ThisShouldn'tExist.png");
var madeUpName = await FileRepo.Any(x => x.Name == "ThisShouldntExist.png");

Assert.False(madeUpName);
}
Expand Down

0 comments on commit cb83076

Please sign in to comment.