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,