test: Fix a typo in an error message

Thank for the awesome project!
This commit is contained in:
Ivan Enderlin 2020-01-24 08:44:23 +01:00 committed by GitHub
parent 3d8b9a8e7b
commit 8ed2662251
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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