-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added example on how to use BSON-file #98
Conversation
@@ -32,7 +32,7 @@ to the value of interest. | |||
|
|||
```julia | |||
using ReferenceTests | |||
@test_reference "stringtest1.txt" string(collect(1:20)) | |||
@test_reference "stringtest1.txt" collect(1:20) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm actually a bit confused how and when things are compared as strings and when things are converted. Anyway, the string
is not needed here.
The test failure is very likely due to an upstream ImageMagick bug, adding |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Cool. I'll add ImageIO to the test-deps. I will also add a BSON-test case. |
Okay, I'll close #100 then so that we don't get conflict. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nightly failure should be unrelated.
Thanks! |
Fixes #97