-
Notifications
You must be signed in to change notification settings - Fork 324
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Basically, the problem here is that the quickcheck tests will sometimes generate CSV data that begins with a UTF-8 BOM and the CSV reader automatically strips it. There's a better way to solve this by making tests more robust, but they were written without this consideration. As a hack, we just make sure that we don't generate CSV data that begins with a BOM. This isn't quite 100% correct since we could still get CSV data beginning with a UTF-8 BOM through shrinking, but that only occurs when a legitimate test failure happens. So this could potentially make failure modes worse, but we abide for now. Fixes #227
- Loading branch information
1 parent
1e20138
commit a1165e0
Showing
2 changed files
with
18 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters