summaryrefslogtreecommitdiff
path: root/cmd/tealdbg/server_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/tealdbg/server_test.go')
-rw-r--r--cmd/tealdbg/server_test.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/tealdbg/server_test.go b/cmd/tealdbg/server_test.go
index aa138b30b..232c6a6f4 100644
--- a/cmd/tealdbg/server_test.go
+++ b/cmd/tealdbg/server_test.go
@@ -23,6 +23,7 @@ import (
"testing"
"time"
+ "github.com/algorand/go-algorand/test/partitiontest"
"github.com/gorilla/mux"
"github.com/stretchr/testify/require"
)
@@ -124,10 +125,12 @@ func serverTestImpl(t *testing.T, run func(t *testing.T, ds *DebugServer) bool,
}
func TestServerRemote(t *testing.T) {
+ partitiontest.PartitionTest(t)
serverTestImpl(t, tryStartingServerRemote, &DebugParams{})
}
func TestServerLocal(t *testing.T) {
+ partitiontest.PartitionTest(t)
txnBlob := []byte("[" + strings.Join([]string{string(txnSample), txnSample}, ",") + "]")
dp := DebugParams{
ProgramNames: []string{"test"},