Browse Source

Fixes unit test for Zend_Console_Getopt

Frank Brückner 11 năm trước cách đây
mục cha
commit
63b594d12a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      tests/Zend/Console/GetoptTest.php

+ 1 - 1
tests/Zend/Console/GetoptTest.php

@@ -331,7 +331,7 @@ class Zend_Console_GetoptTest extends PHPUnit_Framework_TestCase
                 'Expected Zend_Console_Getopt_Exception, got ' . get_class($e)
             );
             $this->assertEquals(
-                'Option "a" requires a parameter.', $e->getMessage()
+                'Option "$alias" requires a parameter.', $e->getMessage()
             );
         }
     }