Fix dvec-related fallout in tests
This commit is contained in:
parent
59de3853be
commit
62651df2b4
8 changed files with 17 additions and 53 deletions
|
@ -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]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue