summaryrefslogtreecommitdiffstats
path: root/src/goqtestlib
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@theqtcompany.com>2016-02-18 16:43:26 +0100
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2016-02-18 16:15:12 +0000
commit7039aa66a15dc0903656c343241ec6cdae70e697 (patch)
tree6b49ba45345d286f8272b8f9bcefae19f65c5910 /src/goqtestlib
parente5bbdb21629ee613925a90eaceb07207da21e5a3 (diff)
Fix imports
The package name has to match the directory name in order to be able to import the functionality as a package. Change-Id: I1652eac57d4ececc6c4383d46df90b772981ee4b Reviewed-by: Robin Burchell <robin.burchell@viroteck.net>
Diffstat (limited to 'src/goqtestlib')
-rw-r--r--src/goqtestlib/result.go2
-rw-r--r--src/goqtestlib/result_test.go2
-rw-r--r--src/goqtestlib/runner.go2
-rw-r--r--src/goqtestlib/runner_test.go2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/goqtestlib/result.go b/src/goqtestlib/result.go
index 4aa74d98..2e0f183e 100644
--- a/src/goqtestlib/result.go
+++ b/src/goqtestlib/result.go
@@ -36,7 +36,7 @@
** $QT_END_LICENSE$
**
****************************************************************************/
-package testlib
+package goqtestlib
import (
"archive/tar"
diff --git a/src/goqtestlib/result_test.go b/src/goqtestlib/result_test.go
index 5dafa96e..36979b59 100644
--- a/src/goqtestlib/result_test.go
+++ b/src/goqtestlib/result_test.go
@@ -36,7 +36,7 @@
** $QT_END_LICENSE$
**
****************************************************************************/
-package testlib
+package goqtestlib
import (
"encoding/xml"
diff --git a/src/goqtestlib/runner.go b/src/goqtestlib/runner.go
index eb67c667..c1236d86 100644
--- a/src/goqtestlib/runner.go
+++ b/src/goqtestlib/runner.go
@@ -36,7 +36,7 @@
** $QT_END_LICENSE$
**
****************************************************************************/
-package testlib
+package goqtestlib
import (
"errors"
diff --git a/src/goqtestlib/runner_test.go b/src/goqtestlib/runner_test.go
index 1cd7281e..de7facdd 100644
--- a/src/goqtestlib/runner_test.go
+++ b/src/goqtestlib/runner_test.go
@@ -36,7 +36,7 @@
** $QT_END_LICENSE$
**
****************************************************************************/
-package testlib
+package goqtestlib
import (
"encoding/xml"