fix incorrect variable in api core tests - 37387 (#37388)

This commit is contained in:
nigeljamesstevenson 2023-03-23 12:26:16 +00:00 committed by GitHub
commit 76a5b18fa4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -0,0 +1,4 @@
Significance: patch
Type: fix
Fix incorrect variable name in api-core-tests

View File

@ -929,7 +929,7 @@ test.describe('Products API tests: CRUD', () => {
productTagId = responseJSON.id;
expect(response.status()).toEqual(201);
expect(typeof productId).toEqual('number');
expect(typeof productTagId).toEqual('number');
expect(responseJSON.name).toEqual('Leather Shoes');
expect(responseJSON.slug).toEqual('leather-shoes');
});