Skip to content

Commit ab2060d

Browse files
committed
fix postdeploy test
1 parent 0fa5ca4 commit ab2060d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/post-deploy.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ describe('Post-Deploy Tests', () => {
117117
assert.strictEqual(lookupRes.status, 301, 'Lookup request should succeed');
118118

119119
const lookupLocation = lookupRes.headers.get('Location');
120-
assert.strictEqual(lookupLocation, `https://adobe-commerce-api-ci.adobeaem.workers.dev/${apiPrefix}/products/${testProduct.sku}`);
120+
assert.strictEqual(lookupLocation, `https://adobe-commerce-api-ci.adobeaem.workers.dev${apiPrefix}/products/${testProduct.sku}`);
121121

122122
const lookupRes2 = await fetch(lookupLocation, lookupOptions);
123123
assert.strictEqual(lookupRes2.status, 200, 'Lookup request should succeed');

0 commit comments

Comments
 (0)