@@ -22,12 +22,15 @@ import (
2222 "github.com/stretchr/testify/require"
2323
2424 "github.com/algorand/go-algorand/test/framework/fixtures"
25+ "github.com/algorand/go-algorand/test/partitiontest"
2526)
2627
2728const statusOffline = "[offline]"
2829const statusOnline = "[online]"
2930
3031func TestAccountNew (t * testing.T ) {
32+ partitiontest .PartitionTest (t )
33+
3134 defer fixtures .ShutdownSynchronizedTest (t )
3235 defer fixture .SetTestContext (t )()
3336 a := require .New (fixtures .SynchronizedTest (t ))
@@ -54,6 +57,8 @@ func TestAccountNew(t *testing.T) {
5457}
5558
5659func TestAccountNewDuplicateFails (t * testing.T ) {
60+ partitiontest .PartitionTest (t )
61+
5762 defer fixtures .ShutdownSynchronizedTest (t )
5863 defer fixture .SetTestContext (t )()
5964 a := require .New (fixtures .SynchronizedTest (t ))
@@ -70,6 +75,8 @@ func TestAccountNewDuplicateFails(t *testing.T) {
7075}
7176
7277func TestAccountRename (t * testing.T ) {
78+ partitiontest .PartitionTest (t )
79+
7380 defer fixtures .ShutdownSynchronizedTest (t )
7481 defer fixture .SetTestContext (t )()
7582 a := require .New (fixtures .SynchronizedTest (t ))
@@ -101,6 +108,8 @@ func TestAccountRename(t *testing.T) {
101108
102109// Importing an account multiple times should not be considered an error by goal
103110func TestAccountMultipleImportRootKey (t * testing.T ) {
111+ partitiontest .PartitionTest (t )
112+
104113 defer fixtures .ShutdownSynchronizedTest (t )
105114 defer fixture .SetTestContext (t )()
106115 a := require .New (fixtures .SynchronizedTest (t ))
0 commit comments