aboutsummaryrefslogtreecommitdiff
path: root/light_test.go
diff options
context:
space:
mode:
authorCollin Guarino <collin.guarino@gmail.com>2016-02-07 17:37:40 -0500
committerCollin Guarino <collin.guarino@gmail.com>2016-02-07 17:37:40 -0500
commitd3c0bdfa560e4200ed9c4ff4b80dec491afc0e5c (patch)
tree11087a8faad8bc0c3ebbea94a2fc41209bf5f5ae /light_test.go
parent3b569742f3826ff0119d2a91669933863a3a428d (diff)
Restructured light struct and all funcs to manage bridge association.
Diffstat (limited to 'light_test.go')
-rw-r--r--light_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/light_test.go b/light_test.go
index 0a63bf8..c9a16a5 100644
--- a/light_test.go
+++ b/light_test.go
@@ -24,7 +24,7 @@ func TestSetLightState(t *testing.T) {
selectedLight.TurnOn()
time.Sleep(time.Second)
- selectedLight.TurnOf()
+ selectedLight.TurnOff()
time.Sleep(time.Second)
selectedLight.TurnOn()
}