diff options
author | Alex Crichton <alex@alexcrichton.com> | 2014-06-23 11:17:39 -0700 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2014-06-23 11:17:39 -0700 |
commit | 6e3077035507f4df3be1d5a04783ceed5554c310 (patch) | |
tree | 0d6b51bb0b250400c0e8a4a291d06e76df5736ce | |
parent | ed88ef0b8151277cc6a876f2daaeb1c63420717b (diff) | |
download | milf-rs-6e3077035507f4df3be1d5a04783ceed5554c310.tar.gz milf-rs-6e3077035507f4df3be1d5a04783ceed5554c310.zip |
Fix a test
-rw-r--r-- | src/serialization.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/serialization.rs b/src/serialization.rs index aad78e8..7011eb6 100644 --- a/src/serialization.rs +++ b/src/serialization.rs @@ -916,7 +916,7 @@ mod tests { Ok(..) => fail!("should not have decoded"), Err(e) => { assert_eq!(e.to_str().as_slice(), - "expected a value of type `integer` for the key `d`"); + "expected a value of type `integer` for the key `bar`"); } } } |