1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
From: Prach Pongpanich <prachpub@gmail.com>
Date: Fri, 12 Sep 2014 01:15:43 +0700
Subject: Use installed class for DEP-8 tests
---
tests/bootstrap.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/bootstrap.php b/tests/bootstrap.php
index 55169f5..a789040 100644
--- a/tests/bootstrap.php
+++ b/tests/bootstrap.php
@@ -1,5 +1,5 @@
<?php
-require __DIR__ . '/../src/autoload.php';
+require 'SebastianBergmann/Comparator/autoload.php';
require __DIR__ . '/autoload.php';
ini_set('precision', 14);
|