Skip to content

Commit 8654ab3

Browse files
author
Mithilesh Gupta
committed
Explicit cast to int64
1 parent 6a7f663 commit 8654ab3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

models/migrations/v1_25/v322_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ func Test_ExtendCommentTreePathLength(t *testing.T) {
3636
column := table.GetColumn("tree_path")
3737
assert.NotNil(t, column)
3838
assert.Contains(t, []string{"NVARCHAR", "VARCHAR"}, column.SQLType.Name)
39-
assert.Equal(t, int64(4000), column.Length)
39+
assert.Equal(t, int64(4000), int64(column.Length))
4040
}
4141
}
4242
}

0 commit comments

Comments
 (0)