1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-09-16 17:46:19 +02:00

updated Record.ToInt test to accomodate the latest cast update

This commit is contained in:
Gani Georgiev
2025-06-09 20:48:52 +03:00
parent 0f73679c3f
commit cdfaed4fa3
2 changed files with 2 additions and 2 deletions

View File

@@ -879,7 +879,7 @@ func TestRecordGetInt(t *testing.T) {
{123, 123},
{2.4, 2},
{"123", 123},
{"123.5", 0},
{"123.5", 123},
{false, 0},
{true, 1},
}