Skip to content

Commit

Permalink
don't use deprecated functions
Browse files Browse the repository at this point in the history
  • Loading branch information
mruoss committed Feb 4, 2023
1 parent 9420e12 commit 37665c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/bonny/axn_integration_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ defmodule Bonny.AxnIntegrationTest do

delete_v2_op =
K8s.Client.delete_all("example.com/v1", "TestResourceV3", namespace: "default")
|> K8s.Operation.put_label_selector(selector)
|> K8s.Operation.put_selector(selector)

{:ok, _} = K8s.Client.run(conn, delete_v2_op)
end)
Expand Down
2 changes: 1 addition & 1 deletion test/bonny/controller_v2_integration_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ defmodule Bonny.ControllerV2IntegrationTest do

delete_v2_op =
K8s.Client.delete_all("example.com/v1", "TestResourceV2", namespace: "default")
|> K8s.Operation.put_label_selector(selector)
|> K8s.Operation.put_selector(selector)

{:ok, _} = K8s.Client.run(conn, delete_v2_op)
end)
Expand Down

0 comments on commit 37665c1

Please sign in to comment.