Renaming 'Sirupsen' to 'sirupsen'

This commit is contained in:
Toby
2016-07-18 16:36:46 +01:00
parent a283a10442
commit a5dbcc756c
8 changed files with 11 additions and 12 deletions
+2 -1
View File
@@ -4,9 +4,10 @@ package logrus_syslog
import (
"fmt"
"github.com/Sirupsen/logrus"
"log/syslog"
"os"
"github.com/sirupsen/logrus"
)
// SyslogHook to send logs via syslog.
+2 -1
View File
@@ -1,9 +1,10 @@
package logrus_syslog
import (
"github.com/Sirupsen/logrus"
"log/syslog"
"testing"
"github.com/sirupsen/logrus"
)
func TestLocalhostAddAndPrint(t *testing.T) {
+1 -1
View File
@@ -3,7 +3,7 @@ package test
import (
"io/ioutil"
"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
)
// test.Hook is a hook designed for dealing with logs in test scenarios.
+1 -1
View File
@@ -3,7 +3,7 @@ package test
import (
"testing"
"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"
)