1
Fork 0

Fix dvec-related fallout in tests

This commit is contained in:
Alex Crichton 2013-03-07 23:44:38 -05:00
parent 59de3853be
commit 62651df2b4
8 changed files with 17 additions and 53 deletions

View file

@ -1311,8 +1311,7 @@ mod tests {
}
}
}
check_equal(str::from_bytes(bw.bytes.data),
~"[\"frog\",[\"Henry\",349]]");
check_equal(str::from_bytes(bw.bytes), ~"[\"frog\",[\"Henry\",349]]");
}
#[test]
@ -1327,8 +1326,7 @@ mod tests {
}
}
}
check_equal(str::from_bytes(bw.bytes.data),
~"\"jodhpurs\"");
check_equal(str::from_bytes(bw.bytes), ~"\"jodhpurs\"");
}
#[test]
@ -1340,8 +1338,7 @@ mod tests {
do encoder.emit_enum_variant (~"None",37,1242) {
}
}
check_equal(str::from_bytes(bw.bytes.data),
~"null");
check_equal(str::from_bytes(bw.bytes), ~"null");
}
#[test]