Commit 54de9ba0 authored by Clint Adams's avatar Clint Adams
Browse files

yaml: Upgrading from 0.8.29 to 0.8.31.1

parent d5bbe27e
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
haskell-yaml (0.8.29-3) UNRELEASED; urgency=medium
haskell-yaml (0.8.31.1-1) unstable; urgency=medium

  * Set Rules-Requires-Root to no.
  * New upstream release

 -- Clint Adams <clint@debian.org>  Sun, 06 May 2018 22:10:58 -0400
 -- Clint Adams <clint@debian.org>  Wed, 04 Jul 2018 17:59:35 -0400

haskell-yaml (0.8.29-2) unstable; urgency=medium

+0 −20
Original line number Diff line number Diff line
--- a/test/Data/YamlSpec.hs
+++ b/test/Data/YamlSpec.hs
@@ -437,7 +437,7 @@
 
 caseEncodeInvalidNumbers :: Assertion
 caseEncodeInvalidNumbers =
-    D.encode (D.String ".") @?= ".\n"
+    D.encode (D.String ".") @?= ".\n...\n"
 
 caseDataTypesPretty :: Assertion
 caseDataTypesPretty =
@@ -455,7 +455,7 @@
 caseQuotedNumber = D.decode "foo: \"1234\"" @?= Just (object [("foo", D.String "1234")])
 caseUnquotedNumber = D.decode "foo: 1234" @?= Just (object [("foo", D.Number 1234)])
 caseAttribNumber = D.decode "foo: !!str 1234" @?= Just (object [("foo", D.String "1234")])
-caseIntegerDecimals = D.encode (1 :: Int) @?= "1\n"
+caseIntegerDecimals = D.encode (1 :: Int) @?= "1\n...\n"
 
 obj :: Maybe D.Value
 obj = Just (object [("foo", D.Bool False), ("bar", D.Bool True), ("baz", D.Bool True)])
+0 −1
Original line number Diff line number Diff line
revert-testsuite