-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix failing test due to name conflict
Closes: diem#11
- Loading branch information
1 parent
ccc101c
commit bf949cb
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
language/tools/move-cli/tests/testsuite/explain_user_module_abort/args.exp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
2 changes: 1 addition & 1 deletion
2
language/tools/move-cli/tests/testsuite/explain_user_module_abort/args.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
2 changes: 1 addition & 1 deletion
2
...plain_user_module_abort/scripts/fail.move → ...ser_module_abort/scripts/fail_script.move
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | ||
} | ||
} |