diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2017-09-23 11:25:42 -0700 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2017-09-23 11:25:42 -0700 |
commit | 454fb9f1e45bd33d8a67647e55279329e2452506 (patch) | |
tree | e3102c48633ae7d77224a0cefee651df12044c62 | |
parent | cd6f68c5450451a78b8dc8a5755f178c20122629 (diff) | |
download | servo-454fb9f1e45bd33d8a67647e55279329e2452506.tar.gz servo-454fb9f1e45bd33d8a67647e55279329e2452506.zip |
stylo: Update ComputedValues size in test
-rw-r--r-- | tests/unit/stylo/size_of.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/stylo/size_of.rs b/tests/unit/stylo/size_of.rs index 4a05b25ada3..a6e7d5e7c7c 100644 --- a/tests/unit/stylo/size_of.rs +++ b/tests/unit/stylo/size_of.rs @@ -32,7 +32,7 @@ fn size_of_selectors_dummy_types() { size_of_test!(test_size_of_rule, style::stylist::Rule, 32); // Large pages generate tens of thousands of ComputedValues. -size_of_test!(test_size_of_cv, ComputedValues, 272); +size_of_test!(test_size_of_cv, ComputedValues, 256); size_of_test!(test_size_of_option_arc_cv, Option<Arc<ComputedValues>>, 8); size_of_test!(test_size_of_option_rule_node, Option<StrongRuleNode>, 8); |