Updated integration tests

This commit is contained in:
Chris Troutner
2019-11-13 11:59:56 -08:00
parent 1f6f96721d
commit 764c601373
+2 -2
View File
@@ -692,7 +692,7 @@ describe("#Raw-Transactions", () => {
// Integration test // Integration test
} else { } else {
assert.hasAllKeys(result, ["error"]) assert.hasAllKeys(result, ["error"])
assert.include(result.error, "transaction already in block chain") assert.include(result.error, "Missing inputs")
} }
}) })
}) })
@@ -800,7 +800,7 @@ describe("#Raw-Transactions", () => {
// Integration test // Integration test
} else { } else {
assert.hasAllKeys(result, ["error"]) assert.hasAllKeys(result, ["error"])
assert.include(result.error, "transaction already in block chain") assert.include(result.error, "Missing inputs")
} }
}) })
}) })