Skip to content

Commit

Permalink
fix: unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan-Ethernal committed Jan 24, 2025
1 parent d7a3fb5 commit 3eba199
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agglayer/types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ func TestConvertNumeric(t *testing.T) {
{"FloatToFloat64", 3.14, reflect.TypeOf(float64(0)), float64(3.14), nil},

// Unsupported type
{"UnsupportedType", 3.14, reflect.TypeOf("string"), nil, errors.New("unsupported target type string")},
{"UnsupportedType", 3.14, reflect.TypeOf("string"), nil, errors.New("unsupported target type")},
}

for _, tt := range tests {
Expand Down

0 comments on commit 3eba199

Please sign in to comment.