diff options
-rw-r--r-- | tests/unit/stylo/build.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/unit/stylo/build.rs b/tests/unit/stylo/build.rs index bb05d97c671..e620bbdf1cc 100644 --- a/tests/unit/stylo/build.rs +++ b/tests/unit/stylo/build.rs @@ -34,11 +34,7 @@ fn main() { for line in r.lines() { let s = line.unwrap(); for cap in matcher.captures_iter(&s) { - // GetStyleVariables is a Servo_* function, but temporarily defined - // on the Gecko side. - if &cap[1] != "GetStyleVariables" { - w.write_all(format!(" [ Servo_{0}, bindings::Servo_{0} ];\n", &cap[1]).as_bytes()).unwrap(); - } + w.write_all(format!(" [ Servo_{0}, bindings::Servo_{0} ];\n", &cap[1]).as_bytes()).unwrap(); } } |