Skip to content

Commit b43c5b6

Browse files
committed
prevent potential conflict with admin server test?
1 parent 83abdb5 commit b43c5b6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dbos/serialization_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ func TestSerialize(t *testing.T) {
6868
})
6969

7070
t.Run("StructTypes", func(t *testing.T) {
71-
type TestStruct struct {
71+
type TestingStruct struct {
7272
A string
7373
B int
7474
}
@@ -77,8 +77,8 @@ func TestSerialize(t *testing.T) {
7777
name string
7878
value any
7979
}{
80-
{"struct", TestStruct{A: "test", B: 42}},
81-
{"pointer to struct", &TestStruct{A: "test", B: 42}},
80+
{"struct", TestingStruct{A: "test", B: 42}},
81+
{"pointer to struct", &TestingStruct{A: "test", B: 42}},
8282
}
8383

8484
for _, tt := range tests {

0 commit comments

Comments
 (0)