diff --git a/tests/FsUnit.Xunit.Test/typed.shouldBeSmallerThanTests.fs b/tests/FsUnit.Xunit.Test/typed.shouldBeSmallerThanTests.fs index 896485ec..53c55641 100644 --- a/tests/FsUnit.Xunit.Test/typed.shouldBeSmallerThanTests.fs +++ b/tests/FsUnit.Xunit.Test/typed.shouldBeSmallerThanTests.fs @@ -11,8 +11,7 @@ type ``shouldBeSmallerThan tests``() = [] member __.``10 should not be less than 10``() = - (fun () -> 10 |> shouldBeSmallerThan 10) - |> shouldFail + (fun () -> 10 |> shouldBeSmallerThan 10) |> shouldFail [] member __.``10[dot]0 should be less than 10[dot]1``() = @@ -22,4 +21,4 @@ type ``shouldBeSmallerThan tests``() = member __.``10[dot]0 should not be less than 10[dot]0``() = (fun () -> 10.0 |> shouldBeSmallerThan 10.0) |> should throw typeof - //|> shouldFail +//|> shouldFail diff --git a/tests/FsUnit.Xunit.Test/typed.shouldEqualTests.fs b/tests/FsUnit.Xunit.Test/typed.shouldEqualTests.fs index 0c9b3d25..71f699cd 100644 --- a/tests/FsUnit.Xunit.Test/typed.shouldEqualTests.fs +++ b/tests/FsUnit.Xunit.Test/typed.shouldEqualTests.fs @@ -97,9 +97,7 @@ type ``shouldEqual Tests``() = |> Assert.Throws |> fun e -> e.Message - |> shouldEqual( - sprintf " Expected: not Equals Error \"Foo\"%sActual: Error \"Foo\"%s" Environment.NewLine Environment.NewLine - ) + |> shouldEqual(sprintf " Expected: not Equals Error \"Foo\"%sActual: Error \"Foo\"%s" Environment.NewLine Environment.NewLine) [] member this.``structural equality``() =