Skip to content

Commit

Permalink
Test name
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-artie committed Apr 8, 2024
1 parent fbcc0a3 commit af6df84
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/debezium/types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,6 @@ func TestToInt64(t *testing.T) {
expectedValue int64
expectedErr string
}{
{
name: "float64",
value: float64(12321),
expectedValue: int64(12321),
},
{
name: "int",
value: int(12321),
Expand All @@ -76,7 +71,7 @@ func TestToInt64(t *testing.T) {
expectedValue: int64(12321),
},
{
name: "int16",
name: "int32",
value: int32(12321),
expectedValue: int64(12321),
},
Expand All @@ -85,6 +80,11 @@ func TestToInt64(t *testing.T) {
value: int64(12321),
expectedValue: int64(12321),
},
{
name: "float64",
value: float64(12321),
expectedValue: int64(12321),
},
{
name: "different type",
value: map[string]any{},
Expand Down

0 comments on commit af6df84

Please sign in to comment.