Skip to content

Commit

Permalink
Fix failing test due to name conflict
Browse files Browse the repository at this point in the history
Closes: diem#11
  • Loading branch information
lxfind authored and bors-libra committed Jan 14, 2022
1 parent ccc101c commit bf949cb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Command `sandbox publish`:
Command `sandbox run scripts/fail.move`:
Command `sandbox run scripts/fail_script.move`:
Execution aborted with code 77 in module 00000000000000000000000000000002::Fail.
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
sandbox publish
sandbox run scripts/fail.move
sandbox run scripts/fail_script.move
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
script {
use 0x2::Fail;
fun fail() {
fun fail_script() {
Fail::f();
}
}

0 comments on commit bf949cb

Please sign in to comment.