Skip to content

Commit

Permalink
[INTERNAL] Remove deepEqual assert
Browse files Browse the repository at this point in the history
  • Loading branch information
flovogt committed Dec 2, 2022
1 parent d374408 commit 5a65a04
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/lib/Resource.js
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ test("Resource: clone resource with stream", async (t) => {
});

test("Resource: clone resource with project", async (t) => {
t.plan(3);
t.plan(2);

const myProject = {
name: "my project"
Expand All @@ -336,7 +336,6 @@ test("Resource: clone resource with project", async (t) => {
t.pass("Resource cloned");

const clonedResourceProject = await clonedResource.getProject();
t.deepEqual(clonedResourceProject, resourceOptions.project, "Cloned resource has correct project content");
t.is(clonedResourceProject, resourceOptions.project, "Cloned resource should have same " +
"project reference as the original resource");
});
Expand Down

0 comments on commit 5a65a04

Please sign in to comment.