From e575d679695fb2c4b54382440b49cc858d1c079f Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 7 Apr 2012 02:23:11 -0700 Subject: [PATCH] had arg order backwards --- tests/get_tags_test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/get_tags_test.php b/tests/get_tags_test.php index f1e4f76b0a..e5c6485de9 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); } /**