From 73798a8d1b688e489445f9cb800ab9a286ec02ad Mon Sep 17 00:00:00 2001 From: Francisco Giordano Date: Fri, 9 Aug 2019 19:51:22 -0300 Subject: [PATCH] fix helper name --- test/gsn/GSNBouncerSignature.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/gsn/GSNBouncerSignature.test.js b/test/gsn/GSNBouncerSignature.test.js index d0a0a6ab2..bb97ad17c 100644 --- a/test/gsn/GSNBouncerSignature.test.js +++ b/test/gsn/GSNBouncerSignature.test.js @@ -23,7 +23,7 @@ contract('GSNBouncerSignature', function ([_, signer, other]) { }); it('rejects unsigned relay requests', async function () { - await gsn.expectGSNError(this.recipient.mockFunction({ value: 0, useGSN: true })); + await gsn.expectError(this.recipient.mockFunction({ value: 0, useGSN: true })); }); it('rejects relay requests where some parameters are signed', async function () { @@ -37,7 +37,7 @@ contract('GSNBouncerSignature', function ([_, signer, other]) { ) ); - await gsn.expectGSNError(this.recipient.mockFunction({ value: 0, useGSN: true, approveFunction })); + await gsn.expectError(this.recipient.mockFunction({ value: 0, useGSN: true, approveFunction })); }); it('accepts relay requests where all parameters are signed', async function () { @@ -67,7 +67,7 @@ contract('GSNBouncerSignature', function ([_, signer, other]) { ) ); - await gsn.expectGSNError(this.recipient.mockFunction({ value: 0, useGSN: true, approveFunction })); + await gsn.expectError(this.recipient.mockFunction({ value: 0, useGSN: true, approveFunction })); }); }); });