Auto merge of #13564 - Manishearth:fx-stylo, r=jdm

Use correct path for test-stylo

(fixes #13563)

r? @jdm

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/13564)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-10-03 12:54:42 -05:00 committed by GitHub
commit 40fec573a6

View file

@ -30,7 +30,7 @@ macro_rules! check_enum_value_non_static {
#[test]
fn assert_restyle_hints_match() {
use style::restyle_hints::*; // For flags
use gecko_bindings::structs::nsRestyleHint;
use style::gecko_bindings::structs::nsRestyleHint;
check_enum_value_non_static!(nsRestyleHint::eRestyle_Self, RESTYLE_SELF.bits());
// XXX This for Servo actually means something like an hypothetical
@ -62,7 +62,7 @@ fn assert_basic_pseudo_elements() {
};
}
include!("../../../components/style/generated/gecko_pseudo_element_helper.rs");
include!("../../../components/style/gecko/generated/gecko_pseudo_element_helper.rs");
assert!(saw_before);
assert!(saw_after);