From 6f9bdad1eca5e5da20222c411c2b2cc9f7de8001 Mon Sep 17 00:00:00 2001 From: deadprogram Date: Sun, 7 May 2017 13:47:52 +0200 Subject: [PATCH] core: increase test coverage Signed-off-by: deadprogram --- robot_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/robot_test.go b/robot_test.go index 3ec59e4b..f7ab368c 100644 --- a/robot_test.go +++ b/robot_test.go @@ -47,11 +47,11 @@ func TestRobotStart(t *testing.T) { func TestRobotStartAutoRun(t *testing.T) { adaptor1 := newTestAdaptor("Connection1", "/dev/null") driver1 := newTestDriver(adaptor1, "Device1", "0") - work := func() {} + //work := func() {} r := NewRobot("autorun", []Connection{adaptor1}, []Device{driver1}, - work, + //work, ) go func() {