Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
dsainati1 committed Feb 2, 2022
1 parent 32d59bf commit 55be095
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions runtime/account_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1305,14 +1305,14 @@ func TestRuntimePublicKey(t *testing.T) {
script := `
pub fun main(): PublicKey {
let publicKey = PublicKey(
publicKey: "0102".decodeHex(),
signatureAlgorithm: SignatureAlgorithm.ECDSA_P256
)
publicKey: "0102".decodeHex(),
signatureAlgorithm: SignatureAlgorithm.ECDSA_P256
)
var publickeyRef = &publicKey.publicKey as &[UInt8]
publickeyRef[0] = 3
return publicKey
return publicKey
}
`

Expand Down Expand Up @@ -1441,9 +1441,9 @@ func TestAuthAccountContracts(t *testing.T) {
transaction {
prepare(signer: AuthAccount) {
var namesRef = &signer.contracts.names as &[String]
namesRef[0] = "baz"
namesRef[0] = "baz"
assert(signer.contracts.names[0] == "foo")
assert(signer.contracts.names[0] == "foo")
}
}
`)
Expand Down

0 comments on commit 55be095

Please sign in to comment.