File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ libcssparser.dummy: cssparser.rc $(RUST_SRC)
1818 touch $@
1919
2020cssparser-test : cssparser.rc $(RUST_SRC )
21- $(RUSTC ) $(RUSTFLAGS ) $< --out-dir . --test
21+ $(RUSTC ) $(RUSTFLAGS ) $< -o $@ --test
2222
2323.PHONY : check
2424check : cssparser-test
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ fn one_rule() {
132132fn run_color_tests(json_data: &str, to_json: &fn(result: Option<Color>) -> json::Json) {
133133 do run_json_tests(json_data) |input| {
134134 match parse_one_component_value(tokenize(input)) {
135- Ok(component_value) => to_json(parse_color (&component_value)),
135+ Ok(component_value) => to_json(Color::parse (&component_value)),
136136 Err(_reason) => json::Null,
137137 }
138138 }
You can’t perform that action at this time.
0 commit comments