Merge pull request #744 from Hywan/patch-2

test: Fix a typo in an error message
This commit is contained in:
Yuji Kanagawa 2020-01-25 12:42:49 +09:00 committed by GitHub
commit c57e5f1830
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ fn test_module_from_code() {
let add_func = adder_mod
.get("add")
.expect("Add fucntion should be in the module")
.expect("Add function should be in the module")
.to_object(py);
let ret_value: i32 = add_func