From db5c9abb2a12eca86ba44f2d1690a62ffe476d7f Mon Sep 17 00:00:00 2001 From: Gavin Cabbage Date: Sat, 29 Aug 2015 00:57:25 -0400 Subject: [PATCH] ran gofmt --- controller/hd44780/hd44780_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller/hd44780/hd44780_test.go b/controller/hd44780/hd44780_test.go index 40b3e2a..eee375d 100644 --- a/controller/hd44780/hd44780_test.go +++ b/controller/hd44780/hd44780_test.go @@ -131,7 +131,7 @@ type mockI2CBus struct { closed bool } -func (bus *mockI2CBus) ReadBytes(addr byte, num int) ([]byte, error) { return []byte{0x00}, nil } +func (bus *mockI2CBus) ReadBytes(addr byte, num int) ([]byte, error) { return []byte{0x00}, nil } func (bus *mockI2CBus) ReadByte(addr byte) (byte, error) { return 0x00, nil } func (bus *mockI2CBus) WriteBytes(addr byte, value []byte) error { return nil } func (bus *mockI2CBus) ReadFromReg(addr, reg byte, value []byte) error { return nil }