aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/script/lib.rs
diff options
context:
space:
mode:
authorPyfisch <pyfisch@gmail.com>2018-11-06 13:01:35 +0100
committerPyfisch <pyfisch@gmail.com>2018-11-06 22:30:31 +0100
commitcb07debcb6f3d3561177ce536c320986720791b7 (patch)
treeccac4d5a48b3112230f3fc2e873753dd7263e9fb /tests/unit/script/lib.rs
parentbf47f90da667e95eaffc8fee36ca8a88e72e276c (diff)
downloadservo-cb07debcb6f3d3561177ce536c320986720791b7.tar.gz
servo-cb07debcb6f3d3561177ce536c320986720791b7.zip
Format remaining files
Diffstat (limited to 'tests/unit/script/lib.rs')
-rw-r--r--tests/unit/script/lib.rs34
1 files changed, 22 insertions, 12 deletions
diff --git a/tests/unit/script/lib.rs b/tests/unit/script/lib.rs
index 157531474d4..0251144dd30 100644
--- a/tests/unit/script/lib.rs
+++ b/tests/unit/script/lib.rs
@@ -2,19 +2,29 @@
* 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(test)] extern crate euclid;
-#[cfg(test)] extern crate keyboard_types;
-#[cfg(test)] extern crate script;
-#[cfg(test)] extern crate servo_url;
-
-#[cfg(test)] mod origin;
-#[cfg(all(test, target_pointer_width = "64"))] mod size_of;
-#[cfg(test)] mod textinput;
-#[cfg(test)] mod headers;
-#[cfg(test)] mod htmlareaelement;
-#[cfg(test)] mod htmlimageelement;
-#[cfg(test)] mod timeranges;
+#[cfg(test)]
+extern crate euclid;
+#[cfg(test)]
+extern crate keyboard_types;
+#[cfg(test)]
+extern crate script;
+#[cfg(test)]
+extern crate servo_url;
+#[cfg(test)]
+mod headers;
+#[cfg(test)]
+mod htmlareaelement;
+#[cfg(test)]
+mod htmlimageelement;
+#[cfg(test)]
+mod origin;
+#[cfg(all(test, target_pointer_width = "64"))]
+mod size_of;
+#[cfg(test)]
+mod textinput;
+#[cfg(test)]
+mod timeranges;
/**
```compile_fail,E0277