[Jifty-commit] jifty branch, master, updated. 1.10518-143-g6015ebc

Jifty commits jifty-commit at lists.jifty.org
Mon Jun 24 18:50:23 EDT 2013


The branch, master has been updated
       via  6015ebc25e67b4b33f322df5b0c5313f91d0269e (commit)
      from  e80d306ae8e07525fb60bb41f09278b643ac4920 (commit)

Summary of changes:
 t/TestApp-Plugin-SetupWizard/lib/TestApp/Plugin/SetupWizard/Test.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

- Log -----------------------------------------------------------------
commit 6015ebc25e67b4b33f322df5b0c5313f91d0269e
Author: Thomas Sibley <trs at bestpractical.com>
Date:   Mon Jun 24 15:47:35 2013 -0700

    YAML::Syck 1.22 fixed a spelling error in an error message which we catch
    
    As a result, we failed to catch the error and the SetupWizard tests
    failed.  Refer to github.com/toddr/YAML-Syck.git at 28b4c69.
    
    Resolves rt.cpan.org #86331.

diff --git a/t/TestApp-Plugin-SetupWizard/lib/TestApp/Plugin/SetupWizard/Test.pm b/t/TestApp-Plugin-SetupWizard/lib/TestApp/Plugin/SetupWizard/Test.pm
index f9215c9..ea103c5 100644
--- a/t/TestApp-Plugin-SetupWizard/lib/TestApp/Plugin/SetupWizard/Test.pm
+++ b/t/TestApp-Plugin-SetupWizard/lib/TestApp/Plugin/SetupWizard/Test.pm
@@ -34,7 +34,7 @@ sub site_config_is {
     my $name     = shift;
 
     my $got = eval { Jifty::YAML::LoadFile('etc/site_config.yml') };
-    die $@ if $@ && $@ !~ /Cannot read from/ && $@ !~ /is empty or non-existant/; # XXX: sic from YAML::Syck
+    die $@ if $@ && $@ !~ /Cannot read from/ && $@ !~ /is empty or non-exist[ea]nt/; # Spelling error from YAML::Syck <= 1.21
 
     Test::More::is_deeply($got, $expected, $name);
 }

-----------------------------------------------------------------------


More information about the Jifty-commit mailing list