Skip to content

Commit 278cedc

Browse files
committed
fixed failing file processor tests
1 parent 1315f97 commit 278cedc

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ build
66
dist
77
*.suo
88
*resharper*
9-
*.user
9+
*.user
10+
TestResult.xml

FluentMigrator.msbuild

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717

1818
<Target Name="Test" DependsOnTargets="Build">
1919
<MakeDir Directories="build\reports" />
20-
<!--
20+
<!--
2121
<exec
2222
Command="..\..\tools\ncover\NCover.Console.exe &quot;..\..\tools\xunit\xunit.console.exe&quot; &quot;FluentMigrator.Tests.dll&quot; //w &quot;.&quot; //x &quot;..\reports\Coverage.xml&quot;"
2323
WorkingDirectory="build\$(BuildType)\">
2424
</exec>
25-
-->
25+
-->
2626
</Target>
2727
</Project>

FluentMigratorVS2008.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{0089ACAC
1414
.gitignore = .gitignore
1515
build.bat = build.bat
1616
FluentMigrator.msbuild = FluentMigrator.msbuild
17+
Rakefile = Rakefile
1718
README.textile = README.textile
1819
EndProjectSection
1920
EndProject

src/FluentMigrator.Tests/Integration/Processors/FileProcessorTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ private IEnumerable<string> Lines
7272
get
7373
{
7474
string line;
75-
using (var stream = File.OpenText(_dumpFilename))
75+
using (var stream = File.OpenText(_fileDumpProcessor.DumpFilename))
7676
while ((line = stream.ReadLine()) != null)
7777
yield return line;
7878
}

0 commit comments

Comments
 (0)