From bc145f12db84d0601a376829f0a8a7e25afb4f88 Mon Sep 17 00:00:00 2001 From: Robin Freyler Date: Tue, 21 Sep 2021 18:22:55 +0200 Subject: [PATCH] migrate back to a single trybuild test case This is because our CI currently fails if we have multiple test cases. --- crates/lang/macro/tests/compile_tests.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/crates/lang/macro/tests/compile_tests.rs b/crates/lang/macro/tests/compile_tests.rs index 5832acaa64..d3cb8b10d2 100644 --- a/crates/lang/macro/tests/compile_tests.rs +++ b/crates/lang/macro/tests/compile_tests.rs @@ -63,11 +63,6 @@ fn compile_tests() { t.compile_fail("tests/ui/contract/fail/N-01-namespace-invalid-identifier.rs"); t.compile_fail("tests/ui/contract/fail/N-02-namespace-invalid-type.rs"); t.compile_fail("tests/ui/contract/fail/N-03-namespace-missing-argument.rs"); -} - -#[test] -fn chain_extension() { - let t = trybuild::TestCases::new(); t.pass("tests/ui/chain_extension/E-01-simple.rs"); }