diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/layout/size_of.rs | 2 | ||||
-rw-r--r-- | tests/unit/util/lib.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/layout/size_of.rs b/tests/unit/layout/size_of.rs index 4c47cee0bd8..f79e352cdc9 100644 --- a/tests/unit/layout/size_of.rs +++ b/tests/unit/layout/size_of.rs @@ -7,7 +7,7 @@ use std::mem::size_of; #[test] fn test_size_of_fragment() { - let expected = 160; + let expected = 168; let actual = size_of::<Fragment>(); if actual < expected { diff --git a/tests/unit/util/lib.rs b/tests/unit/util/lib.rs index b3157b85ca0..a844057a4b0 100644 --- a/tests/unit/util/lib.rs +++ b/tests/unit/util/lib.rs @@ -2,7 +2,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#![cfg_attr(test, feature(plugin, custom_derive, heap_api))] +#![cfg_attr(test, feature(plugin, custom_derive))] #![cfg_attr(test, plugin(plugins))] #![feature(alloc)] |