aboutsummaryrefslogtreecommitdiff
path: root/group_test.go
diff options
context:
space:
mode:
authorCollin Guarino <collin.guarino@gmail.com>2016-02-28 11:06:00 -0500
committerCollin Guarino <collin.guarino@gmail.com>2016-02-28 11:06:00 -0500
commitd32ef65eeedf6236bc007cbd1e8c874087167eaa (patch)
treed7798fa306b5343688a499c2c374e8c829355b1b /group_test.go
parent76d36f528ea622a66b3e65991082fd53120737ee (diff)
Ran go fmt on all files.
Diffstat (limited to 'group_test.go')
-rw-r--r--group_test.go18
1 files changed, 9 insertions, 9 deletions
diff --git a/group_test.go b/group_test.go
index ea13d64..58b74bc 100644
--- a/group_test.go
+++ b/group_test.go
@@ -3,20 +3,20 @@
* GoHue library for Philips Hue
* Copyright (C) 2016 Collin Guarino (Collinux) collin.guarino@gmail.com
* License: GPL version 2 or higher http://www.gnu.org/licenses/gpl.html
-*/
+ */
package hue
import (
- "testing"
- "fmt"
+ "fmt"
+ "testing"
)
func TestGetGroups(t *testing.T) {
- bridge, _ := NewBridge("192.168.1.128")
- bridge.Login("427de8bd6d49f149c8398e4fc08f")
- groups, _ := bridge.GetGroups()
- for group := range groups {
- fmt.Println(groups[group])
- }
+ bridge, _ := NewBridge("192.168.1.128")
+ bridge.Login("427de8bd6d49f149c8398e4fc08f")
+ groups, _ := bridge.GetGroups()
+ for group := range groups {
+ fmt.Println(groups[group])
+ }
}