diff --git a/src/test/compile-fail/extfmt-non-literal2.rs b/src/test/compile-fail/extfmt-non-literal2.rs index 03f2810670ab..8a2d7c4bbed3 100644 --- a/src/test/compile-fail/extfmt-non-literal2.rs +++ b/src/test/compile-fail/extfmt-non-literal2.rs @@ -1,8 +1,5 @@ // error-pattern: literal -// xfail-test (issue #936) - - fn main() { // #fmt's first argument must be a literal. Hopefully this // restriction can be eased eventually to just require a diff --git a/src/test/compile-fail/extfmt-too-many-args.rs b/src/test/compile-fail/extfmt-too-many-args.rs index 869f5be9c9fe..4c91da227e1b 100644 --- a/src/test/compile-fail/extfmt-too-many-args.rs +++ b/src/test/compile-fail/extfmt-too-many-args.rs @@ -1,7 +1,5 @@ // error-pattern:too many arguments -// xfail-test (issue #936) - use std; fn main() { let s = #fmt["%s", "test", "test"]; }