Skip to content

Commit

Permalink
replace use of AuthAccount
Browse files Browse the repository at this point in the history
  • Loading branch information
turbolent committed Aug 12, 2023
1 parent 429895b commit 5f5c0c8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions runtime/ast/transaction_declaration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -393,9 +393,11 @@ func TestTransactionDeclaration_String(t *testing.T) {
Identifier: "signer",
},
TypeAnnotation: &TypeAnnotation{
Type: &NominalType{
Identifier: Identifier{
Identifier: "AuthAccount",
Type: &ReferenceType{
Type: &NominalType{
Identifier: Identifier{
Identifier: "Account",
},
},
},
},
Expand Down Expand Up @@ -449,7 +451,7 @@ func TestTransactionDeclaration_String(t *testing.T) {
access(all)
let f: @F
prepare(signer: AuthAccount) {}
prepare(signer: &Account) {}
pre {
true:
Expand Down

0 comments on commit 5f5c0c8

Please sign in to comment.