From 45cffc17a874c74e91176d6fe518933f92672266 Mon Sep 17 00:00:00 2001 From: claudemiro Date: Sun, 17 Jan 2016 00:32:11 -0200 Subject: [PATCH] Added Link to badge, fix indentation. --- README.md | 4 ++-- ipe/connection_test.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 067053d..a1a3a81 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![Quality code report](http://goreportcard.com/badge/dimiro1/ipe) +[![Quality code report](http://goreportcard.com/badge/dimiro1/ipe)](http://goreportcard.com/report/dimiro1/ipe) # IPÊ @@ -137,7 +137,7 @@ Claudemiro Alves Feitosa Neto # LICENSE -Copyright 2014, 2015 Claudemiro Alves Feitosa Neto. All rights reserved. +Copyright 2014, 2015, 2016 Claudemiro Alves Feitosa Neto. All rights reserved. Use of this source code is governed by a MIT-style license that can be found in the LICENSE file. diff --git a/ipe/connection_test.go b/ipe/connection_test.go index f18ce7f..30ae7d2 100644 --- a/ipe/connection_test.go +++ b/ipe/connection_test.go @@ -6,14 +6,14 @@ package ipe import ( "testing" - + "github.com/gorilla/websocket" ) func TestNewConnection(t *testing.T) { expectedSocketID := "socketID" expectedSocket := &websocket.Conn{} - + c := newConnection(expectedSocketID, expectedSocket) if c.SocketID != expectedSocketID {