--- a/xarray/tests/test_dataarray_typing.yml
+++ b/xarray/tests/test_dataarray_typing.yml
@@ -106,18 +106,6 @@
     main:7: note:     def [P`2, T] pipe(self, func: Callable[[DataArray, **P], T], *args: P.args, **kwargs: P.kwargs) -> T
     main:7: note:     def [T] pipe(self, func: tuple[Callable[..., T], str], *args: Any, **kwargs: Any) -> T
 
-- case: test_mypy_pipe_function_unexpected_keyword
-  main: |
-    from xarray import DataArray
-
-    def f(da: DataArray, arg: int, *, kwonly: int) -> DataArray:
-        return da
-
-    # Call to pipe using wrong keyword: `kw` instead of `kwonly`
-    da = DataArray().pipe(f, 42, kw=99)
-  out: |
-    main:7: error: Unexpected keyword argument "kw" for "pipe" of "DataWithCoords"  [call-arg]
-
 - case: test_mypy_pipe_tuple_return_type_dataarray
   main: |
     from xarray import DataArray
--- a/xarray/tests/test_dataset_typing.yml
+++ b/xarray/tests/test_dataset_typing.yml
@@ -106,18 +106,6 @@
     main:7: note:     def [P`2, T] pipe(self, func: Callable[[Dataset, **P], T], *args: P.args, **kwargs: P.kwargs) -> T
     main:7: note:     def [T] pipe(self, func: tuple[Callable[..., T], str], *args: Any, **kwargs: Any) -> T
 
-- case: test_mypy_pipe_function_unexpected_keyword
-  main: |
-    from xarray import Dataset
-
-    def f(ds: Dataset, arg: int, *, kwonly: int) -> Dataset:
-        return ds
-
-    # Call to pipe using wrong keyword: `kw` instead of `kwonly`
-    ds = Dataset().pipe(f, 42, kw=99)
-  out: |
-    main:7: error: Unexpected keyword argument "kw" for "pipe" of "DataWithCoords"  [call-arg]
-
 - case: test_mypy_pipe_tuple_return_type_dataset
   main: |
     from xarray import Dataset
--- a/xarray/tests/test_datatree_typing.yml
+++ b/xarray/tests/test_datatree_typing.yml
@@ -106,18 +106,6 @@
     main:7: note:     def [P`2, T] pipe(self, func: Callable[[DataTree, **P], T], *args: P.args, **kwargs: P.kwargs) -> T
     main:7: note:     def [T] pipe(self, func: tuple[Callable[..., T], str], *args: Any, **kwargs: Any) -> T
 
-- case: test_mypy_pipe_function_unexpected_keyword
-  main: |
-    from xarray import DataTree
-
-    def f(dt: DataTree, arg: int, *, kwonly: int) -> DataTree:
-        return dt
-
-    # Call to pipe using wrong keyword: `kw` instead of `kwonly`
-    dt = DataTree().pipe(f, 42, kw=99)
-  out: |
-    main:7: error: Unexpected keyword argument "kw" for "pipe" of "DataTree"  [call-arg]
-
 - case: test_mypy_pipe_tuple_return_type_datatree
   main: |
     from xarray import DataTree
