Update cmd_migrate_test.go

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Masayuki Matsuki 2026-02-14 16:30:19 +09:00 committed by GitHub
parent 5bb07f7c74
commit c16d46e8bb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -392,4 +392,10 @@ func TestMoveDir(t *testing.T) {
t.Error("source directory still exists")
}
})
// Note: moveDir also has a cross-device (EXDEV) fallback path which is
// difficult to exercise reliably in unit tests because it depends on
// running across different filesystems. That behavior is validated in
// higher-level integration tests / environments that provide multiple
// mounts, rather than in this unit test.
}