From fba6b613c2e5850d3c7c2b13c3539e7049d99b18 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Fri, 30 Jan 2015 22:13:48 +0100 Subject: [PATCH] Re-enable the DOM struct size tests. They were inadvertently disabled in the Rust upgrade. --- components/script/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/script/lib.rs b/components/script/lib.rs index faa80504a55..5ffaa96b657 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -233,5 +233,5 @@ mod timers; pub mod textinput; mod devtools; -#[cfg(all(test, target_word_size = "64"))] +#[cfg(all(test, target_pointer_width = "64"))] mod tests;