From 8fa4232148ebc0fa89bbfe7689a0f41c52e32b50 Mon Sep 17 00:00:00 2001 From: Tim Alby Date: Fri, 10 Apr 2020 12:25:55 +0200 Subject: [PATCH] fix arguments order Co-Authored-By: Jakob Ackermann --- test/unit/js/DockerRunnerTests.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/js/DockerRunnerTests.js b/test/unit/js/DockerRunnerTests.js index 8399283..3daded8 100644 --- a/test/unit/js/DockerRunnerTests.js +++ b/test/unit/js/DockerRunnerTests.js @@ -357,8 +357,8 @@ describe('DockerRunner', function() { return this.DockerRunner.startContainer( this.options, this.volumes, - this.callback, - () => {} + () => {}, + this.callback ) })