diff --git a/external/gold/jaguar__src__jaguar.toit.gold b/external/gold/jaguar__src__jaguar.toit.gold deleted file mode 100644 index debf6fda8..000000000 --- a/external/gold/jaguar__src__jaguar.toit.gold +++ /dev/null @@ -1,9 +0,0 @@ -jaguar/src/jaguar.toit:164:16: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - id = uuid.parse arguments[1] - ^~~~~~ -jaguar/src/jaguar.toit:166:47: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - id = config.get "id" --if-present=: uuid.parse it - ^~~~~~ -jaguar/src/jaguar.toit:181:24: warning: Deprecated 'NIL'. Use 'Uuid.NIL' instead - --id=id or uuid.NIL - ^~~~ diff --git a/external/gold/jaguar__src__network.toit.gold b/external/gold/jaguar__src__network.toit.gold deleted file mode 100644 index debf6fda8..000000000 --- a/external/gold/jaguar__src__network.toit.gold +++ /dev/null @@ -1,9 +0,0 @@ -jaguar/src/jaguar.toit:164:16: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - id = uuid.parse arguments[1] - ^~~~~~ -jaguar/src/jaguar.toit:166:47: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - id = config.get "id" --if-present=: uuid.parse it - ^~~~~~ -jaguar/src/jaguar.toit:181:24: warning: Deprecated 'NIL'. Use 'Uuid.NIL' instead - --id=id or uuid.NIL - ^~~~ diff --git a/external/gold/jaguar__src__uart.toit.gold b/external/gold/jaguar__src__uart.toit.gold deleted file mode 100644 index debf6fda8..000000000 --- a/external/gold/jaguar__src__uart.toit.gold +++ /dev/null @@ -1,9 +0,0 @@ -jaguar/src/jaguar.toit:164:16: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - id = uuid.parse arguments[1] - ^~~~~~ -jaguar/src/jaguar.toit:166:47: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - id = config.get "id" --if-present=: uuid.parse it - ^~~~~~ -jaguar/src/jaguar.toit:181:24: warning: Deprecated 'NIL'. Use 'Uuid.NIL' instead - --id=id or uuid.NIL - ^~~~ diff --git a/lib/ble/ble.toit b/lib/ble/ble.toit index 31d9ff5d8..e5ce5f852 100644 --- a/lib/ble/ble.toit +++ b/lib/ble/ble.toit @@ -38,7 +38,7 @@ class BleUuid: else if data_ is string: if data_.size != 4 and data_.size != 8 and data_.size != 36: throw "INVALID UUID" if data_.size == 36: - uuid.parse data_ // This throws an exception if the format is incorrect. + uuid.Uuid.parse data_ // This throws an exception if the format is incorrect. else: if (catch: hex.decode data_): throw "INVALID UUID $data_" @@ -69,7 +69,7 @@ class BleUuid: to-byte-array: if data_ is string: if data_.size <= 4: return hex.decode data_ - return (uuid.parse data_).to-byte-array + return (uuid.Uuid.parse data_).to-byte-array else: return data_ diff --git a/lib/device.toit b/lib/device.toit index f6e794ddb..3e9cb7158 100644 --- a/lib/device.toit +++ b/lib/device.toit @@ -16,7 +16,7 @@ name -> string: return hardware-id.stringify /** Hardware ID of this device. */ -hardware-id/uuid.Uuid ::= uuid.uuid5 "hw_id" get-mac-address_ +hardware-id/uuid.Uuid ::= uuid.Uuid.uuid5 "hw_id" get-mac-address_ // -------------------------------------------------------------------------- diff --git a/tests/envelope/boot-container-source.toit b/tests/envelope/boot-container-source.toit index 1402e2bcb..3e69fb053 100644 --- a/tests/envelope/boot-container-source.toit +++ b/tests/envelope/boot-container-source.toit @@ -37,9 +37,9 @@ main: else if install-run-image: install-run install-run-image else if run-image: - run (uuid.parse run-image) + run (uuid.Uuid.parse run-image) else if remove-image: - containers.uninstall (uuid.parse remove-image) + containers.uninstall (uuid.Uuid.parse remove-image) else: throw "No action specified" exit EXIT-CODE-STOP @@ -61,7 +61,7 @@ install-run image-path: reboot if file.is-file uuid-path: - container-uuid := uuid.parse (file.read-content uuid-path).to-string + container-uuid := uuid.Uuid.parse (file.read-content uuid-path).to-string run container-uuid else: // Install the image. diff --git a/tests/envelope/tar-test.toit b/tests/envelope/tar-test.toit index 2e9d5fa7b..6e9f41d6b 100644 --- a/tests/envelope/tar-test.toit +++ b/tests/envelope/tar-test.toit @@ -24,7 +24,7 @@ main args: dir-stream := directory.DirectoryStream "$ota0/$image-dir" file-name := dir-stream.next // The files should be stored with their uuids. - uuid.parse file-name + uuid.Uuid.parse file-name expect-null dir-stream.next dir-stream.close diff --git a/tests/health/gold/sdk/examples__ble__advertise.toit.gold b/tests/health/gold/sdk/examples__ble__advertise.toit.gold deleted file mode 100644 index 5e30601ad..000000000 --- a/tests/health/gold/sdk/examples__ble__advertise.toit.gold +++ /dev/null @@ -1,6 +0,0 @@ -/ble/ble.toit:72:19: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - return (uuid.parse data_).to-byte-array - ^~~~~~ -/ble/ble.toit:41:13: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse data_ // This throws an exception if the format is incorrect. - ^~~~~~ diff --git a/tests/health/gold/sdk/examples__ble__connect.toit.gold b/tests/health/gold/sdk/examples__ble__connect.toit.gold deleted file mode 100644 index 5e30601ad..000000000 --- a/tests/health/gold/sdk/examples__ble__connect.toit.gold +++ /dev/null @@ -1,6 +0,0 @@ -/ble/ble.toit:72:19: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - return (uuid.parse data_).to-byte-array - ^~~~~~ -/ble/ble.toit:41:13: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse data_ // This throws an exception if the format is incorrect. - ^~~~~~ diff --git a/tests/health/gold/sdk/examples__ble__heart_rate.toit.gold b/tests/health/gold/sdk/examples__ble__heart_rate.toit.gold deleted file mode 100644 index 5e30601ad..000000000 --- a/tests/health/gold/sdk/examples__ble__heart_rate.toit.gold +++ /dev/null @@ -1,6 +0,0 @@ -/ble/ble.toit:72:19: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - return (uuid.parse data_).to-byte-array - ^~~~~~ -/ble/ble.toit:41:13: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse data_ // This throws an exception if the format is incorrect. - ^~~~~~ diff --git a/tests/health/gold/sdk/examples__ble__scan.toit.gold b/tests/health/gold/sdk/examples__ble__scan.toit.gold deleted file mode 100644 index 5e30601ad..000000000 --- a/tests/health/gold/sdk/examples__ble__scan.toit.gold +++ /dev/null @@ -1,6 +0,0 @@ -/ble/ble.toit:72:19: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - return (uuid.parse data_).to-byte-array - ^~~~~~ -/ble/ble.toit:41:13: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse data_ // This throws an exception if the format is incorrect. - ^~~~~~ diff --git a/tests/health/gold/sdk/lib__ble__ble.toit.gold b/tests/health/gold/sdk/lib__ble__ble.toit.gold deleted file mode 100644 index 5e30601ad..000000000 --- a/tests/health/gold/sdk/lib__ble__ble.toit.gold +++ /dev/null @@ -1,6 +0,0 @@ -/ble/ble.toit:72:19: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - return (uuid.parse data_).to-byte-array - ^~~~~~ -/ble/ble.toit:41:13: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse data_ // This throws an exception if the format is incorrect. - ^~~~~~ diff --git a/tests/health/gold/sdk/lib__ble__local.toit.gold b/tests/health/gold/sdk/lib__ble__local.toit.gold deleted file mode 100644 index 5e30601ad..000000000 --- a/tests/health/gold/sdk/lib__ble__local.toit.gold +++ /dev/null @@ -1,6 +0,0 @@ -/ble/ble.toit:72:19: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - return (uuid.parse data_).to-byte-array - ^~~~~~ -/ble/ble.toit:41:13: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse data_ // This throws an exception if the format is incorrect. - ^~~~~~ diff --git a/tests/health/gold/sdk/lib__ble__remote.toit.gold b/tests/health/gold/sdk/lib__ble__remote.toit.gold deleted file mode 100644 index 5e30601ad..000000000 --- a/tests/health/gold/sdk/lib__ble__remote.toit.gold +++ /dev/null @@ -1,6 +0,0 @@ -/ble/ble.toit:72:19: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - return (uuid.parse data_).to-byte-array - ^~~~~~ -/ble/ble.toit:41:13: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse data_ // This throws an exception if the format is incorrect. - ^~~~~~ diff --git a/tests/health/gold/sdk/lib__device.toit.gold b/tests/health/gold/sdk/lib__device.toit.gold deleted file mode 100644 index fe6f716f3..000000000 --- a/tests/health/gold/sdk/lib__device.toit.gold +++ /dev/null @@ -1,3 +0,0 @@ -/device.toit:19:31: warning: Deprecated 'uuid5'. Use 'Uuid.uuid5' instead -hardware-id/uuid.Uuid ::= uuid.uuid5 "hw_id" get-mac-address_ - ^~~~~~ diff --git a/tests/health/gold/sdk/tests__envelope__boot-container-source.toit.gold b/tests/health/gold/sdk/tests__envelope__boot-container-source.toit.gold deleted file mode 100644 index 245e8b7fb..000000000 --- a/tests/health/gold/sdk/tests__envelope__boot-container-source.toit.gold +++ /dev/null @@ -1,9 +0,0 @@ -tests/envelope/boot-container-source.toit:40:14: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - run (uuid.parse run-image) - ^~~~~~ -tests/envelope/boot-container-source.toit:42:31: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - containers.uninstall (uuid.parse remove-image) - ^~~~~~ -tests/envelope/boot-container-source.toit:64:27: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - container-uuid := uuid.parse (file.read-content uuid-path).to-string - ^~~~~~ diff --git a/tests/health/gold/sdk/tests__envelope__boot-container-test.toit.gold b/tests/health/gold/sdk/tests__envelope__boot-container-test.toit.gold deleted file mode 100644 index 245e8b7fb..000000000 --- a/tests/health/gold/sdk/tests__envelope__boot-container-test.toit.gold +++ /dev/null @@ -1,9 +0,0 @@ -tests/envelope/boot-container-source.toit:40:14: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - run (uuid.parse run-image) - ^~~~~~ -tests/envelope/boot-container-source.toit:42:31: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - containers.uninstall (uuid.parse remove-image) - ^~~~~~ -tests/envelope/boot-container-source.toit:64:27: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - container-uuid := uuid.parse (file.read-content uuid-path).to-string - ^~~~~~ diff --git a/tests/health/gold/sdk/tests__envelope__tar-test.toit.gold b/tests/health/gold/sdk/tests__envelope__tar-test.toit.gold deleted file mode 100644 index a3a92681a..000000000 --- a/tests/health/gold/sdk/tests__envelope__tar-test.toit.gold +++ /dev/null @@ -1,3 +0,0 @@ -tests/envelope/tar-test.toit:27:11: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse file-name - ^~~~~~ diff --git a/tests/health/gold/sdk/tests__esp32__ble1-board1.toit.gold b/tests/health/gold/sdk/tests__esp32__ble1-board1.toit.gold deleted file mode 100644 index 5e30601ad..000000000 --- a/tests/health/gold/sdk/tests__esp32__ble1-board1.toit.gold +++ /dev/null @@ -1,6 +0,0 @@ -/ble/ble.toit:72:19: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - return (uuid.parse data_).to-byte-array - ^~~~~~ -/ble/ble.toit:41:13: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse data_ // This throws an exception if the format is incorrect. - ^~~~~~ diff --git a/tests/health/gold/sdk/tests__esp32__ble1-board2.toit.gold b/tests/health/gold/sdk/tests__esp32__ble1-board2.toit.gold deleted file mode 100644 index 5e30601ad..000000000 --- a/tests/health/gold/sdk/tests__esp32__ble1-board2.toit.gold +++ /dev/null @@ -1,6 +0,0 @@ -/ble/ble.toit:72:19: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - return (uuid.parse data_).to-byte-array - ^~~~~~ -/ble/ble.toit:41:13: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse data_ // This throws an exception if the format is incorrect. - ^~~~~~ diff --git a/tests/health/gold/sdk/tests__esp32__ble1-shared.toit.gold b/tests/health/gold/sdk/tests__esp32__ble1-shared.toit.gold deleted file mode 100644 index 5e30601ad..000000000 --- a/tests/health/gold/sdk/tests__esp32__ble1-shared.toit.gold +++ /dev/null @@ -1,6 +0,0 @@ -/ble/ble.toit:72:19: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - return (uuid.parse data_).to-byte-array - ^~~~~~ -/ble/ble.toit:41:13: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse data_ // This throws an exception if the format is incorrect. - ^~~~~~ diff --git a/tests/health/gold/sdk/tests__esp32__ble2-board1.toit.gold b/tests/health/gold/sdk/tests__esp32__ble2-board1.toit.gold deleted file mode 100644 index 5e30601ad..000000000 --- a/tests/health/gold/sdk/tests__esp32__ble2-board1.toit.gold +++ /dev/null @@ -1,6 +0,0 @@ -/ble/ble.toit:72:19: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - return (uuid.parse data_).to-byte-array - ^~~~~~ -/ble/ble.toit:41:13: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse data_ // This throws an exception if the format is incorrect. - ^~~~~~ diff --git a/tests/health/gold/sdk/tests__esp32__ble2-board2.toit.gold b/tests/health/gold/sdk/tests__esp32__ble2-board2.toit.gold deleted file mode 100644 index 5e30601ad..000000000 --- a/tests/health/gold/sdk/tests__esp32__ble2-board2.toit.gold +++ /dev/null @@ -1,6 +0,0 @@ -/ble/ble.toit:72:19: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - return (uuid.parse data_).to-byte-array - ^~~~~~ -/ble/ble.toit:41:13: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse data_ // This throws an exception if the format is incorrect. - ^~~~~~ diff --git a/tests/health/gold/sdk/tests__esp32__ble2-shared.toit.gold b/tests/health/gold/sdk/tests__esp32__ble2-shared.toit.gold deleted file mode 100644 index 5e30601ad..000000000 --- a/tests/health/gold/sdk/tests__esp32__ble2-shared.toit.gold +++ /dev/null @@ -1,6 +0,0 @@ -/ble/ble.toit:72:19: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - return (uuid.parse data_).to-byte-array - ^~~~~~ -/ble/ble.toit:41:13: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse data_ // This throws an exception if the format is incorrect. - ^~~~~~ diff --git a/tests/health/gold/sdk/tests__esp32__ble2.toit.gold b/tests/health/gold/sdk/tests__esp32__ble2.toit.gold deleted file mode 100644 index 5e30601ad..000000000 --- a/tests/health/gold/sdk/tests__esp32__ble2.toit.gold +++ /dev/null @@ -1,6 +0,0 @@ -/ble/ble.toit:72:19: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - return (uuid.parse data_).to-byte-array - ^~~~~~ -/ble/ble.toit:41:13: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse data_ // This throws an exception if the format is incorrect. - ^~~~~~ diff --git a/tests/health/gold/sdk/tests__esp32__ble3-board1.toit.gold b/tests/health/gold/sdk/tests__esp32__ble3-board1.toit.gold deleted file mode 100644 index 5e30601ad..000000000 --- a/tests/health/gold/sdk/tests__esp32__ble3-board1.toit.gold +++ /dev/null @@ -1,6 +0,0 @@ -/ble/ble.toit:72:19: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - return (uuid.parse data_).to-byte-array - ^~~~~~ -/ble/ble.toit:41:13: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse data_ // This throws an exception if the format is incorrect. - ^~~~~~ diff --git a/tests/health/gold/sdk/tests__esp32__ble3-board2.toit.gold b/tests/health/gold/sdk/tests__esp32__ble3-board2.toit.gold deleted file mode 100644 index 5e30601ad..000000000 --- a/tests/health/gold/sdk/tests__esp32__ble3-board2.toit.gold +++ /dev/null @@ -1,6 +0,0 @@ -/ble/ble.toit:72:19: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - return (uuid.parse data_).to-byte-array - ^~~~~~ -/ble/ble.toit:41:13: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse data_ // This throws an exception if the format is incorrect. - ^~~~~~ diff --git a/tests/health/gold/sdk/tests__esp32__ble3-shared.toit.gold b/tests/health/gold/sdk/tests__esp32__ble3-shared.toit.gold deleted file mode 100644 index 5e30601ad..000000000 --- a/tests/health/gold/sdk/tests__esp32__ble3-shared.toit.gold +++ /dev/null @@ -1,6 +0,0 @@ -/ble/ble.toit:72:19: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - return (uuid.parse data_).to-byte-array - ^~~~~~ -/ble/ble.toit:41:13: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse data_ // This throws an exception if the format is incorrect. - ^~~~~~ diff --git a/tests/health/gold/sdk/tests__esp32__ble4-board1.toit.gold b/tests/health/gold/sdk/tests__esp32__ble4-board1.toit.gold deleted file mode 100644 index 5e30601ad..000000000 --- a/tests/health/gold/sdk/tests__esp32__ble4-board1.toit.gold +++ /dev/null @@ -1,6 +0,0 @@ -/ble/ble.toit:72:19: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - return (uuid.parse data_).to-byte-array - ^~~~~~ -/ble/ble.toit:41:13: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse data_ // This throws an exception if the format is incorrect. - ^~~~~~ diff --git a/tests/health/gold/sdk/tests__esp32__ble4-board2.toit.gold b/tests/health/gold/sdk/tests__esp32__ble4-board2.toit.gold deleted file mode 100644 index 5e30601ad..000000000 --- a/tests/health/gold/sdk/tests__esp32__ble4-board2.toit.gold +++ /dev/null @@ -1,6 +0,0 @@ -/ble/ble.toit:72:19: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - return (uuid.parse data_).to-byte-array - ^~~~~~ -/ble/ble.toit:41:13: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse data_ // This throws an exception if the format is incorrect. - ^~~~~~ diff --git a/tests/health/gold/sdk/tests__esp32__ble4-shared.toit.gold b/tests/health/gold/sdk/tests__esp32__ble4-shared.toit.gold deleted file mode 100644 index 5e30601ad..000000000 --- a/tests/health/gold/sdk/tests__esp32__ble4-shared.toit.gold +++ /dev/null @@ -1,6 +0,0 @@ -/ble/ble.toit:72:19: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - return (uuid.parse data_).to-byte-array - ^~~~~~ -/ble/ble.toit:41:13: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse data_ // This throws an exception if the format is incorrect. - ^~~~~~ diff --git a/tests/health/gold/sdk/tests__esp32__ble5-board1.toit.gold b/tests/health/gold/sdk/tests__esp32__ble5-board1.toit.gold deleted file mode 100644 index 5e30601ad..000000000 --- a/tests/health/gold/sdk/tests__esp32__ble5-board1.toit.gold +++ /dev/null @@ -1,6 +0,0 @@ -/ble/ble.toit:72:19: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - return (uuid.parse data_).to-byte-array - ^~~~~~ -/ble/ble.toit:41:13: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse data_ // This throws an exception if the format is incorrect. - ^~~~~~ diff --git a/tests/health/gold/sdk/tests__esp32__ble5-board2.toit.gold b/tests/health/gold/sdk/tests__esp32__ble5-board2.toit.gold deleted file mode 100644 index 5e30601ad..000000000 --- a/tests/health/gold/sdk/tests__esp32__ble5-board2.toit.gold +++ /dev/null @@ -1,6 +0,0 @@ -/ble/ble.toit:72:19: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - return (uuid.parse data_).to-byte-array - ^~~~~~ -/ble/ble.toit:41:13: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse data_ // This throws an exception if the format is incorrect. - ^~~~~~ diff --git a/tests/health/gold/sdk/tests__esp32__ble5-shared.toit.gold b/tests/health/gold/sdk/tests__esp32__ble5-shared.toit.gold deleted file mode 100644 index 5e30601ad..000000000 --- a/tests/health/gold/sdk/tests__esp32__ble5-shared.toit.gold +++ /dev/null @@ -1,6 +0,0 @@ -/ble/ble.toit:72:19: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - return (uuid.parse data_).to-byte-array - ^~~~~~ -/ble/ble.toit:41:13: warning: Deprecated 'parse'. Use 'Uuid.parse' instead - uuid.parse data_ // This throws an exception if the format is incorrect. - ^~~~~~ diff --git a/tests/health/gold/sdk/tests__pi__spi.toit.gold b/tests/health/gold/sdk/tests__pi__spi.toit.gold deleted file mode 100644 index b01201e69..000000000 --- a/tests/health/gold/sdk/tests__pi__spi.toit.gold +++ /dev/null @@ -1,3 +0,0 @@ -tests/pi/spi.toit:54:16: error: Type mismatch. Expected 'ByteArray'. Got 'List' - device.write [0x01, 0x02, 0x03] - ^