[audio] Run go fmt because we have to

Signed-off-by: deadprogram <ron@hybridgroup.com>
This commit is contained in:
deadprogram 2016-05-24 21:05:27 -07:00
parent 31881bca81
commit 50ea4143f9
3 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@ func main() {
laser := audio.NewAudioDriver(e, "laser", "./examples/laser.mp3")
work := func() {
gobot.Every(2 * time.Second, func() {
gobot.Every(2*time.Second, func() {
laser.Play()
})
}

View File

@ -2,12 +2,12 @@ package gobottest
import (
"fmt"
"os"
"os/exec"
"reflect"
"runtime"
"strings"
"testing"
"os"
"os/exec"
)
var errFunc = func(t *testing.T, message string) {

View File

@ -3,8 +3,8 @@
package audio
import (
"testing"
"os/exec"
"testing"
"github.com/hybridgroup/gobot/gobottest"
)