summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--example/index.php2
-rw-r--r--tests/dump_ast.php2
-rw-r--r--tests/test.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/example/index.php b/example/index.php
index 2ebe3c7..b8a6938 100644
--- a/example/index.php
+++ b/example/index.php
@@ -2,7 +2,7 @@
# Example program to demonstrate the STE...
-require_once(dirname(__FILE__) . "/../stupid_template_engine.php");
+require_once(dirname(__FILE__) . "/../ste.php");
# Initialize an STECore instance
$ste = new \ste\STECore(
diff --git a/tests/dump_ast.php b/tests/dump_ast.php
index 418fbc8..ef0a049 100644
--- a/tests/dump_ast.php
+++ b/tests/dump_ast.php
@@ -1,5 +1,5 @@
<?php
-require(dirname(__FILE__) . "/../stupid_template_engine.php");
+require(dirname(__FILE__) . "/../ste.php");
var_dump(\ste\Parser::parse(file_get_contents("php://stdin"), "-"));
diff --git a/tests/test.php b/tests/test.php
index 41713dc..c765fb4 100644
--- a/tests/test.php
+++ b/tests/test.php
@@ -1,6 +1,6 @@
<?php
-require(dirname(__FILE__) . "/../stupid_template_engine.php");
+require(dirname(__FILE__) . "/../ste.php");
require("code.php");
class TestStorage implements \ste\StorageAccess {