Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
tnowacki committed Jul 28, 2024
1 parent 0217401 commit 5a3b19f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ async fn test_manage_package_update() {
.read_to_string(&mut lock_file_contents)
.expect("Error reading Move.lock file");

let expected = expect![[r#"
let expected = expect![[r##"
# @generated by Move, please check-in and do not edit manually.
[move]
Expand All @@ -56,7 +56,7 @@ async fn test_manage_package_update() {
[move.toolchain-version]
compiler-version = "0.0.1"
edition = "legacy"
edition = "2024.beta"
flavor = "sui"
[env]
Expand All @@ -66,6 +66,6 @@ async fn test_manage_package_update() {
original-published-id = "0x000000000000000000000000000000000000000000000000000000000000000a"
latest-published-id = "0x000000000000000000000000000000000000000000000000000000000000000b"
published-version = "5"
"#]];
"##]];
expected.assert_eq(lock_file_contents.as_str());
}

0 comments on commit 5a3b19f

Please sign in to comment.