Skip to content

Commit 3fcf4e7

Browse files
committed
Fixed integration test
1 parent 68be030 commit 3fcf4e7

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

Diff for: internal/integrationtest/board/hardware_loading_test.go

+1-6
Original file line numberDiff line numberDiff line change
@@ -154,12 +154,7 @@ func TestHardwareLoading(t *testing.T) {
154154
out, _, err := cli.Run("core", "list", "--format", "json")
155155
require.NoError(t, err)
156156
jsonOut := requirejson.Parse(t, out)
157-
if runtime.GOOS == "windows" {
158-
// a package is a symlink, and windows does not support them
159-
jsonOut.LengthMustEqualTo(2)
160-
} else {
161-
jsonOut.LengthMustEqualTo(3)
162-
}
157+
jsonOut.LengthMustEqualTo(3)
163158
jsonOut.MustContain(`[
164159
{
165160
"id": "arduino:avr",

0 commit comments

Comments
 (0)