aboutsummaryrefslogtreecommitdiffstats
path: root/packages/e2e_tests/tests/api/assets.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/e2e_tests/tests/api/assets.test.ts')
-rw-r--r--packages/e2e_tests/tests/api/assets.test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/e2e_tests/tests/api/assets.test.ts b/packages/e2e_tests/tests/api/assets.test.ts
index 5c294929..78a5c7fe 100644
--- a/packages/e2e_tests/tests/api/assets.test.ts
+++ b/packages/e2e_tests/tests/api/assets.test.ts
@@ -39,7 +39,7 @@ describe("Assets API", () => {
// Retrieve the asset
const resp = await fetch(
- `http://localhost:${port}/api/assets/${uploadResponse.assetId}`,
+ `http://localhost:${port}/api/v1/assets/${uploadResponse.assetId}`,
{
headers: {
authorization: `Bearer ${apiKey}`,
@@ -123,7 +123,7 @@ describe("Assets API", () => {
// Verify asset is deleted
const assetResponse = await fetch(
- `http://localhost:${port}/api/assets/${uploadResponse.assetId}`,
+ `http://localhost:${port}/api/v1/assets/${uploadResponse.assetId}`,
{
headers: {
authorization: `Bearer ${apiKey}`,