Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit e000138

Browse files
committed
Remove deprecated AzureIoTHub library from tests
1 parent 494d5e0 commit e000138

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/librarymanager.test.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,15 @@ suite("Arduino: Library Manager.", () => {
7171
this.timeout(3 * 60 * 1000);
7272
try {
7373
// Library Manager: Install extenal libarary.
74-
ArduinoContext.arduinoApp.installLibrary("AzureIoTHub", "1.0.35", true).then((result) => {
74+
ArduinoContext.arduinoApp.installLibrary("FastLED", "3.5.0", true).then((result) => {
7575
// check if the installation succeeds or not
7676
const arduinoSettings = ArduinoContext.arduinoApp.settings;
77-
const libPath = Path.join(arduinoSettings.sketchbookPath, "libraries", "AzureIoTHub");
77+
const libPath = Path.join(arduinoSettings.sketchbookPath, "libraries", "FastLED");
7878

7979
if (util.directoryExistsSync(libPath)) {
8080
done();
8181
} else {
82-
done(new Error("AzureIoTHub library install failure, can't find library path: " + libPath));
82+
done(new Error("FastLED library install failure, can't find library path: " + libPath));
8383
}
8484
});
8585

0 commit comments

Comments
 (0)