diff --git a/changes_test.go b/changes_test.go index ddef6b9..0b696e8 100644 --- a/changes_test.go +++ b/changes_test.go @@ -245,10 +245,6 @@ func TestChangesWithChangesGH13590(t *testing.T) { // Create a directory, copy it, make sure we report no changes between the two func TestChangesDirsEmpty(t *testing.T) { - if runtime.GOOS == "windows" { - t.Skip("FIXME: broken on Windows 1903 and up; see https://github.com/moby/moby/pull/39846") - } - src, err := os.MkdirTemp("", "docker-changes-test") assert.NilError(t, err) defer os.RemoveAll(src) @@ -331,10 +327,6 @@ func mutateSampleDir(t *testing.T, root string) { } func TestChangesDirsMutated(t *testing.T) { - if runtime.GOOS == "windows" { - t.Skip("FIXME: broken on Windows 1903 and up; see https://github.com/moby/moby/pull/39846") - } - src, err := os.MkdirTemp("", "docker-changes-test") assert.NilError(t, err) createSampleDir(t, src)