Skip to content

Commit

Permalink
fix: test setup issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Henkel committed Nov 21, 2024
1 parent d37aedb commit 0968561
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e/fetcher_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ var _ = Describe("For servers", Ordered, Label("servers"), func() {
location, _, err := testClient.Location.GetByName(ctx, "fsn1")
Expect(err).NotTo(HaveOccurred())

serverType, _, err := testClient.ServerType.GetByName(ctx, "cx11")
serverType, _, err := testClient.ServerType.GetByName(ctx, "cx22")
Expect(err).NotTo(HaveOccurred())

image, _, err := testClient.Image.GetByNameAndArchitecture(ctx, "ubuntu-22.04", hcloud.ArchitectureX86)
image, _, err := testClient.Image.GetByNameAndArchitecture(ctx, "ubuntu-24.04", hcloud.ArchitectureX86)
Expect(err).NotTo(HaveOccurred())

sshKey, _, err := testClient.SSHKey.Create(ctx, hcloud.SSHKeyCreateOpts{
Expand Down

0 comments on commit 0968561

Please sign in to comment.