Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/manager/.changeset/pr-10447-fixed-1715190382947.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/manager": Fixed
---

Fix One-Click App test by using Ubuntu 22.04 image ([#10447](https://github.com/linode/manager/pull/10447))
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ describe('OneClick Apps (OCA)', () => {
description: 'Minecraft OCA',
ordinal: 10,
logo_url: 'assets/Minecraft.svg',
images: ['linode/debian11', 'linode/ubuntu20.04'],
images: ['linode/debian11', 'linode/ubuntu22.04'],
deployments_total: 18854,
deployments_active: 412,
is_public: true,
Expand Down Expand Up @@ -161,7 +161,7 @@ describe('OneClick Apps (OCA)', () => {

const firstName = randomLabel();
const password = randomString(16);
const image = 'linode/ubuntu20.04';
const image = 'linode/ubuntu22.04';
const rootPassword = randomString(16);
const region = chooseRegion();
const linodeLabel = randomLabel();
Expand Down