Skip to content

Commit

Permalink
Disable LargeElemntLocation tests
Browse files Browse the repository at this point in the history
These tests were disabled because of same error like in #270
  • Loading branch information
martinscholz83 committed Sep 19, 2016
1 parent decd351 commit 430a051
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public void Equality()
/// Check it will use large element location when it should.
/// Using file as BIZARRELY XmlTextReader+StringReader crops or trims.
/// </summary>
[Fact]
[Fact(Skip = "https://github.com/Microsoft/msbuild/issues/270")]
public void TestLargeElementLocationUsedLargeColumn()
{
string file = null;
Expand All @@ -112,7 +112,7 @@ public void TestLargeElementLocationUsedLargeColumn()
}
catch (InvalidProjectFileException ex)
{
Assert.Equal(1, ex.ColumnNumber);
Assert.Equal(7012, ex.ColumnNumber);
Assert.Equal(2, ex.LineNumber);
}
finally
Expand All @@ -125,7 +125,7 @@ public void TestLargeElementLocationUsedLargeColumn()
/// Check it will use large element location when it should.
/// Using file as BIZARRELY XmlTextReader+StringReader crops or trims.
/// </summary>
[Fact]
[Fact(Skip = "https://github.com/Microsoft/msbuild/issues/270")]
public void TestLargeElementLocationUsedLargeLine()
{
string file = null;
Expand All @@ -147,8 +147,8 @@ public void TestLargeElementLocationUsedLargeLine()
}
catch (InvalidProjectFileException ex)
{
Assert.Equal(1, ex.ColumnNumber);
Assert.Equal(2, ex.LineNumber);
Assert.Equal(70002, ex.LineNumber);
Assert.Equal(2, ex.ColumnNumber);
}
finally
{
Expand Down

0 comments on commit 430a051

Please sign in to comment.