From adc40ecf04c551f7c6312470f8df7c53f8b3f0e1 Mon Sep 17 00:00:00 2001 From: Naresh Kumar Date: Thu, 8 Aug 2024 10:57:14 -0700 Subject: [PATCH] fix test query count --- tests/integ/modin/index/test_datetime_index_methods.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integ/modin/index/test_datetime_index_methods.py b/tests/integ/modin/index/test_datetime_index_methods.py index 510adda7137..83f8630dcdc 100644 --- a/tests/integ/modin/index/test_datetime_index_methods.py +++ b/tests/integ/modin/index/test_datetime_index_methods.py @@ -15,7 +15,7 @@ ) -@sql_count_checker(query_count=2) +@sql_count_checker(query_count=3) def test_datetime_index_construction(): # create from native pandas datetime index. index = native_pd.DatetimeIndex(["2021-01-01", "2021-01-02", "2021-01-03"])