Adapting tests

pull/2/head
Michael Scoff 7 years ago
parent 614191eaf6
commit 0be29ac288
  1. 4
      TrustTests/Factories/Transaction.swift

@ -17,7 +17,7 @@ extension Transaction {
gasUsed: String = "0x1", gasUsed: String = "0x1",
nonce: String = "0", nonce: String = "0",
date: Date = Date(), date: Date = Date(),
actionJSON: String = "" isError: Bool = false
) -> Transaction { ) -> Transaction {
return Transaction( return Transaction(
id: id, id: id,
@ -32,7 +32,7 @@ extension Transaction {
gasUsed: gasUsed, gasUsed: gasUsed,
nonce: nonce, nonce: nonce,
date: date, date: date,
actionJSON: actionJSON isError: isError
) )
} }
} }

Loading…
Cancel
Save