diff --git a/performance/processor.js b/performance/processor.js index 305858d..a239e87 100644 --- a/performance/processor.js +++ b/performance/processor.js @@ -6,7 +6,7 @@ function getRandomMovieId(req, res, context, ee, next) { } const randomMovie = movies[Math.floor(Math.random() * movies.length)]; - context.vars.getRandomMovieId = randomMovie.id; + context.vars.movieId = randomMovie.id; next(); };