From a091af967e3caf8140f49b80522c1c570fd585a3 Mon Sep 17 00:00:00 2001 From: Fabio Scotto di Santolo Date: Wed, 28 Nov 2018 15:54:37 +0100 Subject: [PATCH] Various fix --- properties.go | 1 + properties_test.go | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/properties.go b/properties.go index 0d7e163..eeb5a6f 100644 --- a/properties.go +++ b/properties.go @@ -7,6 +7,7 @@ import ( "strings" ) +// Pair -- type Pair struct { First string Second string diff --git a/properties_test.go b/properties_test.go index d855b42..24ff99e 100644 --- a/properties_test.go +++ b/properties_test.go @@ -5,7 +5,7 @@ import ( "path/filepath" "testing" - prop "bitbucket.org/fabio_scotto_di_santolo/properties" + prop "github.com/fscotto/properties" ) const FILENAME = "ini_test.properties" @@ -212,7 +212,7 @@ func TestDefaultLoad(t *testing.T) { t.Failed() } for key, value := range p.Values() { - t.Logf("%s = %s\n", key, value) + t.Logf("%d = %s\n", key, value) } } else if err != nil { t.Logf("\n[!!] Failed error %s\n", err.Error())