From e1fec1b08df9ffa2171af8aca0974b56ce8623ee Mon Sep 17 00:00:00 2001 From: Mischa Untaga <99098079+MischaU8@users.noreply.github.com> Date: Sun, 7 Jan 2024 19:24:27 +0100 Subject: dont stringify args --- rtt-module.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtt-module.js b/rtt-module.js index 31f426b..c0bc30f 100755 --- a/rtt-module.js +++ b/rtt-module.js @@ -132,7 +132,7 @@ module.exports.fuzz = function(fuzzerInputData) { // console.log(active, action, args) replay.push(active + "\t" + action + "\t" + JSON.stringify(args)) try { - state = RULES.action(state, active, action, JSON.stringify(args)) + state = RULES.action(state, active, action, args) } catch (e) { log_crash(replay, state, view, step, active, action, args) throw new RulesCrashError(e, e.stack) -- cgit v1.2.3