Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nchaulet committed Aug 22, 2024
1 parent f02e389 commit 23ca205
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -996,11 +996,11 @@ export default function (providerContext: FtrProviderContext) {
.expect(200);
createdPolicyIds.push(updatedPolicy.id);
// eslint-disable-next-line @typescript-eslint/naming-convention
const { id, updated_at, version, space_ids, ...newPolicy } = updatedPolicy;
const { id, updated_at, version, ...newPolicy } = updatedPolicy;

expect(newPolicy).to.eql({
status: 'active',
name: 'Updated name',
name: 'Updated name 2',
description: 'Updated description',
namespace: 'default',
is_managed: false,
Expand Down

0 comments on commit 23ca205

Please sign in to comment.