From b9ee09c49edc750049673415dfd688029738ad61 Mon Sep 17 00:00:00 2001 From: chrlschwb Date: Fri, 8 Sep 2023 09:06:25 +0200 Subject: [PATCH] fix test error --- .../src/fixtures/membership/UpdateProfileHappyCaseFixture.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/network-tests/src/fixtures/membership/UpdateProfileHappyCaseFixture.ts b/tests/network-tests/src/fixtures/membership/UpdateProfileHappyCaseFixture.ts index 78fd08981c..859be58afd 100644 --- a/tests/network-tests/src/fixtures/membership/UpdateProfileHappyCaseFixture.ts +++ b/tests/network-tests/src/fixtures/membership/UpdateProfileHappyCaseFixture.ts @@ -61,9 +61,6 @@ export class UpdateProfileHappyCaseFixture extends BaseQueryNodeFixture { } public getExpectedValues(): MemberProfileData { - console.log('new value : ', this.newValues) - console.log('old value : ', this.oldValues) - console.log(isSet(this.newValues.validatorAccount), 'name : ', isSet(this.newValues.name)) return { handle: isSet(this.newValues.handle) ? this.newValues.handle : this.oldValues.handle, name: isSet(this.newValues.name) ? this.newValues.name || null : this.oldValues.name,