We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04c23d3 commit af00c57Copy full SHA for af00c57
src/libserialize/json.rs
@@ -3098,7 +3098,7 @@ mod tests {
3098
}
3099
3100
#[test]
3101
- #[ignore(cfg(windows))] // FIXME(#14064)
+ #[ignore(cfg(target_word_size = "32"))] // FIXME(#14064)
3102
fn test_read_object_streaming() {
3103
assert_eq!(last_event("{ "), Error(SyntaxError(EOFWhileParsingObject, 1, 3)));
3104
assert_eq!(last_event("{1"), Error(SyntaxError(KeyMustBeAString, 1, 2)));
@@ -3170,7 +3170,7 @@ mod tests {
3170
);
3171
3172
3173
3174
fn test_read_list_streaming() {
3175
assert_stream_equal(
3176
"[]",
0 commit comments