We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff9388d commit 24ca3a3Copy full SHA for 24ca3a3
1 file changed
xarray_sql/df_test.py
@@ -115,7 +115,7 @@ def test_explode_data_equal_one_first(air):
115
def test_explode_data_equal_one_last(air):
116
dss = list(explode(air))
117
ds = dss[-1]
118
-
+
119
# For the last chunk, we need to calculate where it actually starts
120
# The original logic slice(0, s) only works for the first chunk
121
iselection = {}
@@ -128,7 +128,7 @@ def test_explode_data_equal_one_last(air):
128
start = chunk_bounds[last_chunk_idx]
129
end = chunk_bounds[last_chunk_idx + 1]
130
iselection[dim] = slice(start, end)
131
132
assert air.isel(iselection).equals(ds)
133
134
0 commit comments