Browse Source

Fixed build on linux due to newline.

pull/541/head
Abhinav Tripathi 10 years ago
parent
commit
e0c561d731
  1. 2
      tests/CSharpTemp/CSharpTemp.Tests.cs

2
tests/CSharpTemp/CSharpTemp.Tests.cs

@ -420,6 +420,6 @@ public class CSharpTempTests : GeneratorTestFixture @@ -420,6 +420,6 @@ public class CSharpTempTests : GeneratorTestFixture
foosMore[1] = new Foo();
var ex = Assert.Throws<ArgumentOutOfRangeException>(() => bar.Foos = foosMore);
Assert.AreEqual("value", ex.ParamName);
Assert.AreEqual("The provided array's dimensions doesn't match the required size.\r\nParameter name: value", ex.Message);
Assert.AreEqual("The provided array's dimensions doesn't match the required size." + Environment.NewLine +"Parameter name: value", ex.Message);
}
}

Loading…
Cancel
Save