Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions changes_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down
Loading