From 3e972b37535875c91f6be32dae0ff47997cc2207 Mon Sep 17 00:00:00 2001 From: Christopher Young Date: Thu, 24 Sep 2015 16:31:06 -0400 Subject: [PATCH] Reorg. --- test/maxgap.go | 4 ++-- test/nexrad_annunciator.go | 4 ++-- test/uatsummary.go | 4 ++-- {test/uatparse => uatparse}/uatparse.go | 0 4 files changed, 6 insertions(+), 6 deletions(-) rename {test/uatparse => uatparse}/uatparse.go (100%) diff --git a/test/maxgap.go b/test/maxgap.go index b333b5d1..e4b64203 100644 --- a/test/maxgap.go +++ b/test/maxgap.go @@ -4,7 +4,7 @@ package main import ( "fmt" // "time" - "./uatparse" + "../uatparse" "os" "bufio" "strings" @@ -195,4 +195,4 @@ func main() { if err := p.Save(4 * vg.Inch, 4 * vg.Inch, "qos.png"); err != nil { panic(err) } -} \ No newline at end of file +} diff --git a/test/nexrad_annunciator.go b/test/nexrad_annunciator.go index 7d722a40..6f6514e4 100644 --- a/test/nexrad_annunciator.go +++ b/test/nexrad_annunciator.go @@ -2,7 +2,7 @@ package main import ( "fmt" - "./uatparse" + "../uatparse" "strconv" "os" "bufio" @@ -350,4 +350,4 @@ func main() { fmt.Printf("no precip.\n") } -} \ No newline at end of file +} diff --git a/test/uatsummary.go b/test/uatsummary.go index e1856d0f..3cb069b0 100644 --- a/test/uatsummary.go +++ b/test/uatsummary.go @@ -2,7 +2,7 @@ package main import ( "fmt" - "./uatparse" + "../uatparse" "os" "bufio" "strconv" @@ -70,4 +70,4 @@ func main() { // fmt.Printf("%v\n", k) } } -} \ No newline at end of file +} diff --git a/test/uatparse/uatparse.go b/uatparse/uatparse.go similarity index 100% rename from test/uatparse/uatparse.go rename to uatparse/uatparse.go