From 66d53aafefa95b861143343fcd6761bb384716e5 Mon Sep 17 00:00:00 2001 From: till Date: Sun, 18 Mar 2012 16:35:09 +0100 Subject: [PATCH] add more examples to the dataprovider --- tests/Composer/Test/Repository/Vcs/SvnDriverTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/Composer/Test/Repository/Vcs/SvnDriverTest.php b/tests/Composer/Test/Repository/Vcs/SvnDriverTest.php index ca9fa8936..9c11330b0 100644 --- a/tests/Composer/Test/Repository/Vcs/SvnDriverTest.php +++ b/tests/Composer/Test/Repository/Vcs/SvnDriverTest.php @@ -100,11 +100,12 @@ class SvnDriverTest extends \PHPUnit_Framework_TestCase { return array( array('http://svn.apache.org', true), - array('http://svn.sf.net', true), + array('https://svn.sf.net', true), array('svn://example.org', true), array('svn+ssh://example.org', true), array('file:///d:/repository_name/project', true), array('file:///repository_name/project', true), + array('/absolute/path', true), ); }