Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-nicolas committed Nov 7, 2024
1 parent f62d681 commit 8887ea4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/connectors/plugins/public/adyen/plugin_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ var _ = Describe("Adyen Plugin", func() {
It("should fail if client is not set", func(ctx SpecContext) {
req := models.CreateTransferRequest{}
_, err := plg.CreateTransfer(ctx, req)
Expect(err).To(MatchError(plugins.ErrNotYetInstalled.Error()))
Expect(err).To(MatchError(plugins.ErrNotImplemented.Error()))
})
})

Expand All @@ -137,7 +137,7 @@ var _ = Describe("Adyen Plugin", func() {
It("should fail if client is not set", func(ctx SpecContext) {
req := models.CreatePayoutRequest{}
_, err := plg.CreatePayout(ctx, req)
Expect(err).To(MatchError(plugins.ErrNotYetInstalled.Error()))
Expect(err).To(MatchError(plugins.ErrNotImplemented.Error()))
})
})

Expand Down

0 comments on commit 8887ea4

Please sign in to comment.