From a643cbbc0c05baa66f66c31c3d8e367643f603f3 Mon Sep 17 00:00:00 2001 From: Loic d'Anterroches Date: Sun, 23 Nov 2008 14:35:39 +0100 Subject: [PATCH] Fixed to use the new class name. --- src/IDF/Tests/TestGit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/IDF/Tests/TestGit.php b/src/IDF/Tests/TestGit.php index f22a8af..e7492cb 100644 --- a/src/IDF/Tests/TestGit.php +++ b/src/IDF/Tests/TestGit.php @@ -35,7 +35,7 @@ class IDF_Tests_TestGit extends UnitTestCase public function testParseLog() { $log_lines = preg_split("/\015\012|\015|\012/", file_get_contents(dirname(__FILE__).'/test-log.txt')); - $log = IDF_Git::parseLog($log_lines, 3); + $log = IDF_Scm_Git::parseLog($log_lines, 3); $this->assertEqual('Fixed the middleware to correctly return a 404 error if the project is', $log[0]->title); }