From 84e02643b9ae72f5dacad824d44de01087fba023 Mon Sep 17 00:00:00 2001 From: Anton Matosov Date: Thu, 11 Jun 2020 16:54:22 -0700 Subject: [PATCH] Limit line lenght to 120 --- src/TestPlanner.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/TestPlanner.lua b/src/TestPlanner.lua index c423693..6612ff5 100644 --- a/src/TestPlanner.lua +++ b/src/TestPlanner.lua @@ -20,7 +20,8 @@ local TestPlanner = {} pathStringForSorting -- a string representation of `path`, used for sorting of the test plan } - testNamePattern - Only tests matching this Lua pattern string will run. Pass empty or nil to run all tests - - extraEnvironment - Lua table holding additional functions and variables to be injected into the specification function during execution + - extraEnvironment - Lua table holding additional functions and variables to be injected into the specification + function during execution ]] function TestPlanner.createPlan(modulesList, testNamePattern, extraEnvironment) local plan = TestPlan.new(testNamePattern, extraEnvironment)