Changeset 2635

Show
Ignore:
Timestamp:
07/31/08 16:12:08 (5 months ago)
Author:
impl
Message:

branches/david-xml_only_config_system (refs #519): Fix ConfigHandlersConfigHandlerTest? to use the right array key

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/david-xml_only_config_system/tests2/config/ConfigHandlersConfigHandlerTest.php

    r1985 r2635  
    3636    $this->assertTrue(isset(self::$handlers[$hf])); 
    3737    $this->assertSame('CHCHTestHandler', self::$handlers[$hf]['class']); 
    38     $this->assertSame(AgaviConfig::get('core.agavi_dir') . '/config/xsd/routing.xsd', self::$handlers[$hf]['validation']['xml_schema'][0]); 
     38    $this->assertSame(AgaviConfig::get('core.agavi_dir') . '/config/xsd/routing.xsd', self::$handlers[$hf]['validations']['xml_schema'][0]); 
    3939    $this->assertSame(array('foo' => 'bar', 'dir' => AgaviConfig::get('core.agavi_dir')) , self::$handlers[$hf]['parameters']); 
    4040  }