Skip to content

Commit 883c832

Browse files
committed
Fix GNUStep CI
1 parent 831fe71 commit 883c832

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/tests/src/exception.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ fn throw_catch_raise_catch() {
5959
#[test]
6060
#[cfg(feature = "catch-all")]
6161
#[should_panic = "uncaught exception <NSException: 0x"]
62-
#[cfg_attr(feature = "gnustep-2-1", ignore = "requires C-unwind")]
62+
#[cfg_attr(feature = "gnustep-1-7", ignore = "requires C-unwind")]
6363
fn raise_catch_all1() {
6464
let name = NSString::from_str("abc");
6565
let reason = NSString::from_str("def");
@@ -71,7 +71,7 @@ fn raise_catch_all1() {
7171
#[test]
7272
#[cfg(feature = "catch-all")]
7373
#[should_panic = "> 'abc' reason: def"]
74-
#[cfg_attr(feature = "gnustep-2-1", ignore = "requires C-unwind")]
74+
#[cfg_attr(feature = "gnustep-1-7", ignore = "requires C-unwind")]
7575
fn raise_catch_all2() {
7676
let name = NSString::from_str("abc");
7777
let reason = NSString::from_str("def");

0 commit comments

Comments
 (0)