Skip to content

Commit

Permalink
add another test
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Apr 21, 2022
1 parent 9c55361 commit 5f30d0c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/functional/test_storage_slots.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
c: public(Bytes[32])
d: public(int128[4])
foo: public(HashMap[uint256, uint256[3]])
dyn_array: DynArray[uint256, 3]
e: public(String[47])
f: public(int256[1])
g: public(StructTwo[2])
Expand All @@ -36,6 +37,7 @@ def __init__():
c: "whatifthisstringtakesuptheentirelengthwouldthatbesobadidothinkso"
})
]
self.dyn_array = [1, 2, 3]
self.h = [123456789]
self.foo[0] = [987, 654, 321]
self.foo[1] = [123, 456, 789]
Expand Down

0 comments on commit 5f30d0c

Please sign in to comment.