From 185f2da789f9b9e869e9f336c0b002f1df2bb905 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabio=20Jos=C3=A9?= Date: Tue, 29 Oct 2019 10:37:10 -0300 Subject: [PATCH] Fix method signature MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabio José --- lib/specs/spec_1.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/specs/spec_1.js b/lib/specs/spec_1.js index 4ab8e03..074c664 100644 --- a/lib/specs/spec_1.js +++ b/lib/specs/spec_1.js @@ -71,8 +71,8 @@ Spec1.prototype.id = function(_id){ return this; }; -Spec1.prototype.getId => { +Spec1.prototype.getId = () => { return this.payload["id"]; -} +}; module.exports = Spec1;