We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ParseReference()
1 parent 7e2194b commit 0bdd20bCopy full SHA for 0bdd20b
test/test_core.py
@@ -240,6 +240,10 @@ def test_core_download(run_command, downloads_dir):
240
result = run_command(["core", "download", "bananas:avr"])
241
assert result.failed
242
243
+ #Wrong casing
244
+ result = run_command(["core", "download", "Arduino:Samd@1.8.12"])
245
+ assert os.path.exists(os.path.join(downloads_dir, "packages", "core-ArduinoCore-samd-1.8.12.tar.bz2"))
246
+
247
248
def _in(jsondata, name, version=None):
249
installed_cores = json.loads(jsondata)
0 commit comments