Bug 1499408 - followup test fix to the followup build fix.

This commit is contained in:
Emilio Cobos Álvarez 2018-10-17 17:12:13 +02:00
parent c063aeeee7
commit d7751dd7ee
2 changed files with 4 additions and 5 deletions

View File

@ -111,7 +111,6 @@ ${helpers.predefined_type(
vector=False,
animation_value_type="discrete",
flags="APPLIES_TO_FIRST_LETTER",
boxed=True,
)}
${helpers.predefined_type(

View File

@ -42,10 +42,10 @@ size_of_test!(test_size_of_rule_node, RuleNode, 72);
// we only pass `&mut SourcePropertyDeclaration` references around.
size_of_test!(test_size_of_parsed_declaration, style::properties::SourcePropertyDeclaration, 608);
size_of_test!(test_size_of_computed_image, computed::image::Image, 32);
size_of_test!(test_size_of_specified_image, specified::image::Image, 32);
size_of_test!(test_size_of_computed_image, computed::image::Image, 24);
size_of_test!(test_size_of_specified_image, specified::image::Image, 24);
// FIXME(bz): These can shrink if we move the None_ value inside the
// enum instead of paying an extra word for the Either discriminant.
size_of_test!(test_size_of_computed_image_layer, computed::image::ImageLayer, 32);
size_of_test!(test_size_of_specified_image_layer, specified::image::ImageLayer, 32);
size_of_test!(test_size_of_computed_image_layer, computed::image::ImageLayer, 24);
size_of_test!(test_size_of_specified_image_layer, specified::image::ImageLayer, 24);