fix bug in test.

This commit is contained in:
Felix S. Klock II 2013-09-20 03:09:57 +02:00
parent 89b363de0c
commit 9627e80ce5
1 changed files with 2 additions and 2 deletions

View File

@ -64,10 +64,10 @@ fn test0() {
assert_eq!(f.inner.copied, 5);
assert_eq!(*f.inner.moved, 6);
assert_eq!(b.inner.copied, 1);
assert_eq!(b.inner.copied, 5);
assert_eq!(*b.inner.moved, 7);
assert_eq!(c.inner.copied, 1);
assert_eq!(c.inner.copied, 5);
assert_eq!(*c.inner.moved, 8);
}