fix bats test comment typo

This commit is contained in:
elianddb
2025-12-23 15:23:21 -08:00
parent 95d1ccc787
commit f08b645f03
+2 -2
View File
@@ -41,8 +41,8 @@ dolt init"
#bats test_tags=no_lambda
@test "tzdata: CONVERT_TZ works without timezone database" {
# See https://pkg.go.dev/time#LoadLocation for where IANA database locations checked. Here we assume Dolt always
# embeds the timezone database for environments without it.
# See https://pkg.go.dev/time#LoadLocation for IANA database locations checked. Here want to see Dolt always embed
# the IANA database for environments without it (otherwise NULL is returned).
run dolt sql -q "SELECT CONVERT_TZ('2023-01-01 12:00:00','UTC','America/New_York') AS iana_ok;"
[ "$status" -eq 0 ]
[[ "$output" =~ "iana_ok" ]] || false