File tree 1 file changed +12
-0
lines changed
1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -629,6 +629,9 @@ make_backup = false
629
629
630
630
#[ test]
631
631
fn test_old_option_set ( ) {
632
+ if !crate :: is_nightly_channel!( ) {
633
+ return ;
634
+ }
632
635
let toml = r#"
633
636
unstable_features = true
634
637
merge_imports = true
@@ -639,6 +642,9 @@ make_backup = false
639
642
640
643
#[ test]
641
644
fn test_both_set ( ) {
645
+ if !crate :: is_nightly_channel!( ) {
646
+ return ;
647
+ }
642
648
let toml = r#"
643
649
unstable_features = true
644
650
merge_imports = true
@@ -650,6 +656,9 @@ make_backup = false
650
656
651
657
#[ test]
652
658
fn test_new_overridden ( ) {
659
+ if !crate :: is_nightly_channel!( ) {
660
+ return ;
661
+ }
653
662
let toml = r#"
654
663
unstable_features = true
655
664
merge_imports = true
@@ -661,6 +670,9 @@ make_backup = false
661
670
662
671
#[ test]
663
672
fn test_old_overridden ( ) {
673
+ if !crate :: is_nightly_channel!( ) {
674
+ return ;
675
+ }
664
676
let toml = r#"
665
677
unstable_features = true
666
678
imports_granularity = "Module"
You can’t perform that action at this time.
0 commit comments