diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-05-18 18:11:13 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-05-18 18:11:13 +0000 |
commit | d4200e260003dc1e75cd27db8f1b286fa6a30931 (patch) | |
tree | 26fc792a37f4f98f43167c5fed40f079f012bdab /modules/simpletest/tests/graph.test | |
parent | 245454bece3e3a460ed1504117a4dd7eb635fd8d (diff) | |
download | brdo-d4200e260003dc1e75cd27db8f1b286fa6a30931.tar.gz brdo-d4200e260003dc1e75cd27db8f1b286fa6a30931.tar.bz2 |
- Patch #763850 by c960657: require_once() and drupal_get_path() inconsistencies.
Diffstat (limited to 'modules/simpletest/tests/graph.test')
-rw-r--r-- | modules/simpletest/tests/graph.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/simpletest/tests/graph.test b/modules/simpletest/tests/graph.test index c8c99edd6..70af3ff1e 100644 --- a/modules/simpletest/tests/graph.test +++ b/modules/simpletest/tests/graph.test @@ -23,7 +23,7 @@ class GraphUnitTest extends DrupalUnitTestCase { */ function testDepthFirstSearch() { // Provoke the inclusion of graph.inc. - require_once 'includes/graph.inc'; + require_once DRUPAL_ROOT . '/includes/graph.inc'; // The sample graph used is: // 1 --> 2 --> 3 5 ---> 6 |