Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rcoh committed Dec 13, 2023
1 parent 4c37283 commit 3a9b475
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,9 @@ mod tests {
assert_eq!("smithy.rs.runtime.crate.stable.version=1.0.3", updated);
}

// ignored: we are temporarily removing this safeguard
#[test]
#[ignore]
fn downgrading_stable_crate_should_be_caught_as_err() {
let gradle_properties = "smithy.rs.runtime.crate.stable.version=1.0.2";
let version = semver::Version::new(1, 0, 1);
Expand All @@ -199,7 +201,9 @@ mod tests {
assert!(format!("{:?}", result).contains("downgrade"));
}

// ignored: we are temporarily removing this safeguard
#[test]
#[ignore]
fn downgrading_unstable_crate_should_be_caught_as_err() {
let gradle_properties = "smithy.rs.runtime.crate.unstable.version=0.57.1";
let version = semver::Version::new(0, 57, 0);
Expand Down

0 comments on commit 3a9b475

Please sign in to comment.