meta-google: network-sh: Fix eui64

Re-read the spec and realized the bit being used was off by 1.

Change-Id: I02d0e747f5e47cfbf3a8c4f4b9e45d16a6f8c8b1
Signed-off-by: William A. Kennington III <wak@google.com>
diff --git a/meta-google/recipes-google/networking/network-sh/test.sh b/meta-google/recipes-google/networking/network-sh/test.sh
index 2803c09..9596eef 100755
--- a/meta-google/recipes-google/networking/network-sh/test.sh
+++ b/meta-google/recipes-google/networking/network-sh/test.sh
@@ -57,7 +57,7 @@
 
 test_mac_to_eui64() {
   str="$(mac_to_eui64 '12:34:56:78:90:af')" || fail
-  expect_streq "$str" '::1334:56ff:fe78:90af'
+  expect_streq "$str" '::1034:56ff:fe78:90af'
 }
 
 test_ip4_to_bytes() {