diff options
-rw-r--r-- | meta/lib/oeqa/runtime/cases/go.py | 2 | ||||
-rw-r--r-- | meta/recipes-extended/go-examples/go-helloworld_0.1.bb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/runtime/cases/go.py b/meta/lib/oeqa/runtime/cases/go.py index 7514d108f1..39a80f4dca 100644 --- a/meta/lib/oeqa/runtime/cases/go.py +++ b/meta/lib/oeqa/runtime/cases/go.py | |||
@@ -18,4 +18,4 @@ class GoHelloworldTest(OERuntimeTestCase): | |||
18 | self.assertEqual(status, 0, msg=msg) | 18 | self.assertEqual(status, 0, msg=msg) |
19 | 19 | ||
20 | msg = 'Incorrect output: %s' % output | 20 | msg = 'Incorrect output: %s' % output |
21 | self.assertEqual(output, "Hello, Go examples!", msg=msg) | 21 | self.assertEqual(output, "Hello, world!", msg=msg) |
diff --git a/meta/recipes-extended/go-examples/go-helloworld_0.1.bb b/meta/recipes-extended/go-examples/go-helloworld_0.1.bb index ce6ec08c59..98cd4d8103 100644 --- a/meta/recipes-extended/go-examples/go-helloworld_0.1.bb +++ b/meta/recipes-extended/go-examples/go-helloworld_0.1.bb | |||
@@ -6,7 +6,7 @@ LICENSE = "MIT" | |||
6 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" | 6 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" |
7 | 7 | ||
8 | SRC_URI = "git://go.googlesource.com/example;branch=master;protocol=https" | 8 | SRC_URI = "git://go.googlesource.com/example;branch=master;protocol=https" |
9 | SRCREV = "5bec756976671f30903223ec46ff8a70dced4954" | 9 | SRCREV = "d9923f6970e9ba7e0d23aa9448ead71ea57235ae" |
10 | UPSTREAM_CHECK_COMMITS = "1" | 10 | UPSTREAM_CHECK_COMMITS = "1" |
11 | 11 | ||
12 | GO_IMPORT = "golang.org/x/example" | 12 | GO_IMPORT = "golang.org/x/example" |