aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/data/test.html2
-rw-r--r--test/data/test.js2
-rw-r--r--test/data/test.php2
-rw-r--r--test/data/test2.html2
4 files changed, 4 insertions, 4 deletions
diff --git a/test/data/test.html b/test/data/test.html
index fc6dc3860..eec028e90 100644
--- a/test/data/test.html
+++ b/test/data/test.html
@@ -1,6 +1,6 @@
html text<br/>
<script type="text/javascript">/* <![CDATA[ */
-testFoo = "foo"; $('#foo').html('foo');
+testFoo = "foo"; jQuery('#foo').html('foo');
ok( true, "test.html executed" );
/* ]]> */</script>
<script src="data/test.js"></script>
diff --git a/test/data/test.js b/test/data/test.js
index f8bdd091e..a41cb232b 100644
--- a/test/data/test.js
+++ b/test/data/test.js
@@ -1,3 +1,3 @@
var foobar = "bar";
-$('#ap').html('bar');
+jQuery('#ap').html('bar');
ok( true, "test.js executed");
diff --git a/test/data/test.php b/test/data/test.php
index 9dbea9798..3d08f3253 100644
--- a/test/data/test.php
+++ b/test/data/test.php
@@ -1,6 +1,6 @@
html text<br/>
<script type="text/javascript">/* <![CDATA[ */
-testFoo = "foo"; $('#foo').html('foo');
+testFoo = "foo"; jQuery('#foo').html('foo');
ok( true, "test.php executed" );
/* ]]> */</script>
<script src="data/test.js?<?php srand(); echo time() . '' . rand(); ?>"></script>
diff --git a/test/data/test2.html b/test/data/test2.html
index ebf610e43..1df6151a0 100644
--- a/test/data/test2.html
+++ b/test/data/test2.html
@@ -1,5 +1,5 @@
<script type="text/javascript">
var testFoo = "foo";
-$('#foo').html('foo');
+jQuery('#foo').html('foo');
ok( true, "test2.html executed" );
</script>