Skip to content

Commit c6b2225

Browse files
marhopk0ral
authored andcommitted
Fix unit tests for xml-types < 0.3.7, continued
1 parent e4a6f14 commit c6b2225

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xml-conduit/test/unit.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1132,7 +1132,7 @@ streamRenderGenerateEvents = do
11321132
nonEmptyTag <- runConduit $
11331133
R.tag "foo" (R.attr "bar" "baz") (R.content "...") .| sinkList
11341134
nonEmptyTag @?=
1135-
[ EventBeginElement "foo" [("bar", ["baz"])]
1135+
[ EventBeginElement "foo" [("bar", [ContentText "baz"])]
11361136
, EventContent $ ContentText "..."
11371137
, EventEndElement "foo"
11381138
]

0 commit comments

Comments
 (0)