Subject: | Finder windows no longer use volume name |
Hi,
With a recent Mac OS X (10.5.8), a Finder.app window opened on a Volume no longer uses the
volume name as the title, but '/'.
The attached patch fixes the test case.
Subject: | 0001-Finder-windows-no-longer-use-the-volume-name-as-titl.patch |
From 2291807718f3187ea5a4cd462d82fb748947892f Mon Sep 17 00:00:00 2001
From: Pedro Melo <melo@simplicidade.org>
Date: Sun, 6 Sep 2009 14:48:16 +0100
Subject: [PATCH] Finder windows no longer use the volume name as title (10.5.8)
Signed-off-by: Pedro Melo <melo@simplicidade.org>
---
t/simple.t | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/t/simple.t b/t/simple.t
index 100ce0c..4e363b7 100755
--- a/t/simple.t
+++ b/t/simple.t
@@ -78,7 +78,7 @@ SKIP: {
cmp_ok($!, '==', 0, "No error");
ok(my $get = $evt2->get, "Get value");
- is($get, $volume, "Check value");
+ is($get, '/', "Check value");
cmp_ok($!, '==', 0, "No error");
ok(do_event(qw(core clos), $target, "'----':$win"), "Close window");
--
1.6.4.169.g64d5f