Remove failure's use of GenericError (#8287)

automerge
This commit is contained in:
Jack May
2020-02-14 14:07:53 -08:00
committed by GitHub
parent 4593d333c7
commit 965361ff69
2 changed files with 2 additions and 2 deletions

View File

@@ -23,6 +23,6 @@ fn test_program_native_failure() {
.send_instruction(&alice_keypair, instruction)
.unwrap_err()
.unwrap(),
TransactionError::InstructionError(0, InstructionError::GenericError)
TransactionError::InstructionError(0, InstructionError::CustomError(0))
);
}