diff --git a/test/testconnection.jl b/test/testconnection.jl
index 772462509987aac4f12ac17d209d24f884be1fc5..3680580865003e55e937680f2dfd83ffb67a0aa0 100644
--- a/test/testconnection.jl
+++ b/test/testconnection.jl
@@ -1,6 +1,8 @@
-#testing connections
+using LabConnections.Computer, DoubleTankLab
+
+print("testing connections, this should give something other than NaN or 0.0, and the pump should turned on\n")
 measures = [AnalogInput10V(0), AnalogInput10V(1),AnalogInput10V(4), AnalogOutput10V(0)]
 st = ComediStream()
 init_devices!(st, measures...)
-print("$(read.(measures[1:3])\n)")
+print("$(read.(measures[1:3]))\n")
 send(measures[4], 10.0)