diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2012-02-05 13:23:06 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2012-02-05 13:23:06 -0800 |
commit | 1f20f77712e31fa554b0c435a9d0376c4d4138d6 (patch) | |
tree | 94d64abe589499e279d1006325cb788ba5887711 /src/Tests/Writers/HTML.hs | |
parent | 9bf32a7554da7912efff95a4cd59bb4faaf44fa5 (diff) |
Changed infix level of testing combinators.
This avoids clash with (<>), which is defined in Data.Monoid
as having infix 6.
Diffstat (limited to 'src/Tests/Writers/HTML.hs')
-rw-r--r-- | src/Tests/Writers/HTML.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Tests/Writers/HTML.hs b/src/Tests/Writers/HTML.hs index e3a446586..8561aa421 100644 --- a/src/Tests/Writers/HTML.hs +++ b/src/Tests/Writers/HTML.hs @@ -23,7 +23,7 @@ which is in turn shorthand for test html "my test" (X,Y) -} -infix 5 =: +infix 4 =: (=:) :: (ToString a, ToPandoc a) => String -> (a, String) -> Test (=:) = test html |