@@ -406,15 +406,11 @@ def uses_java_re(t):
406
406
lambda t : t .string_col .find ("a" ),
407
407
lambda t : t .string_col .str .find ("a" ),
408
408
id = "find" ,
409
- marks = pytest .mark .notimpl (["polars" ], raises = com .OperationNotDefinedError ),
410
409
),
411
410
param (
412
411
lambda t : t .date_string_col .find ("13" , 3 ),
413
412
lambda t : t .date_string_col .str .find ("13" , 3 ),
414
413
id = "find_start" ,
415
- marks = [
416
- pytest .mark .notimpl (["polars" ], raises = com .OperationNotDefinedError ),
417
- ],
418
414
),
419
415
param (
420
416
lambda t : t .string_col .lpad (10 , "a" ),
@@ -605,6 +601,8 @@ def test_string(backend, alltypes, df, result_func, expected_func):
605
601
result = expr .execute ()
606
602
607
603
expected = backend .default_series_rename (expected_func (df ))
604
+ result .to_csv ("result.csv" , index = False )
605
+ expected .to_csv ("expected.csv" , index = False )
608
606
backend .assert_series_equal (result , expected )
609
607
610
608
@@ -1084,7 +1082,6 @@ def string_temp_table(backend, con):
1084
1082
lambda t : t .string_col .find ("123" ),
1085
1083
lambda t : t .str .find ("123" ),
1086
1084
id = "find" ,
1087
- marks = pytest .mark .notimpl ("polars" , raises = com .OperationNotDefinedError ),
1088
1085
),
1089
1086
param (
1090
1087
lambda t : t .string_col .rpad (4 , "-" ),
0 commit comments