From 064e5d8377efa004d1f7eeeddc118476370435b1 Mon Sep 17 00:00:00 2001 From: Sarah Gilmore Date: Tue, 31 Oct 2023 15:43:01 -0400 Subject: [PATCH] Fix test comments --- matlab/test/arrow/array/list/tDatetimeValidator.m | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/matlab/test/arrow/array/list/tDatetimeValidator.m b/matlab/test/arrow/array/list/tDatetimeValidator.m index acfa51101d613..06d18bd92f747 100644 --- a/matlab/test/arrow/array/list/tDatetimeValidator.m +++ b/matlab/test/arrow/array/list/tDatetimeValidator.m @@ -71,8 +71,8 @@ function ZonedNoSetter(testCase) function ValidateElementNoThrow(testCase) %#ok % Verify validateElement does not throw an exception if: % 1. the input element is a datetime - % 2. its TimeZone property is '' (only if Zoned = false) - % 3. its TimeZone property is not empty (ony if Zoned = true). + % 2. its TimeZone property is '' and Zoned = false + % 3. its TimeZone property is not empty and Zoned = true import arrow.array.internal.list.DatetimeValidator @@ -135,7 +135,6 @@ function ValidateElementClassTypeMismatchError(testCase) testCase.verifyError(fcn, errorID); fcn = @() validator.validateElement(seconds(1)); testCase.verifyError(fcn, errorID); - end function GetElementLength(testCase)