aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-04-07 02:23:11 -0700
committerfriendica <info@friendica.com>2012-04-07 02:23:11 -0700
commite575d679695fb2c4b54382440b49cc858d1c079f (patch)
tree51165b940b93794eef6d10a7556412bf6bbb5669
parent7a7102618b5069b68fef65edea40b78840f37ea0 (diff)
downloadvolse-hubzilla-e575d679695fb2c4b54382440b49cc858d1c079f.tar.gz
volse-hubzilla-e575d679695fb2c4b54382440b49cc858d1c079f.tar.bz2
volse-hubzilla-e575d679695fb2c4b54382440b49cc858d1c079f.zip
had arg order backwards
-rw-r--r--tests/get_tags_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/get_tags_test.php b/tests/get_tags_test.php
index f1e4f76b0..e5c6485de 100644
--- a/tests/get_tags_test.php
+++ b/tests/get_tags_test.php
@@ -264,7 +264,7 @@ class GetTagsTest extends PHPUnit_Framework_TestCase {
$this->assertEquals("Test with @[url=http://justatest.de]Mike Lastname[/url] id tag", $text);
$this->assertEquals("@[url=http://justatest.de]Mike Lastname[/url]", $str_tags);
// this test may produce two cid:15 entries - which is OK because duplicates are pruned before delivery
- $this->assertContains($inform,"cid:15");
+ $this->assertContains("cid:15",$inform);
}
/**