We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff48974 commit 6c88335Copy full SHA for 6c88335
test/StreamTests.hs
@@ -126,6 +126,12 @@ readWriteConduit input = do
126
Left x -> do
127
throwIO x
128
129
+-- No sst behaves differently frmo the normal writexlsx because
130
+-- the sst table isn't first constructed.
131
+-- this results in a single pass instead of a double pass.
132
+-- it turns out that in certain cases this test would pass
133
+-- but the writeXlsx wouldn't, which indicates brittleness within
134
+-- the statefull hexpat parser.
135
readWriteConduitNoSst :: Xlsx -> IO ()
136
readWriteConduitNoSst input = do
137
BS.writeFile "testinput.xlsx" (toBs input)
0 commit comments