@@ -1562,11 +1562,11 @@ public function test_is_activity_reply_returns_false_for_non_reply() {
15621562 }
15631563
15641564 /**
1565- * Test is_activity_quote function with quote property.
1565+ * Test is_quote_activity function with quote property.
15661566 *
1567- * @covers \Activitypub\is_activity_quote
1567+ * @covers \Activitypub\is_quote_activity
15681568 */
1569- public function test_is_activity_quote_with_quote () {
1569+ public function test_is_quote_activity_with_quote () {
15701570 $ activity = array (
15711571 'type ' => 'Create ' ,
15721572 'object ' => array (
@@ -1576,15 +1576,15 @@ public function test_is_activity_quote_with_quote() {
15761576 ),
15771577 );
15781578
1579- $ this ->assertTrue ( \Activitypub \is_activity_quote ( $ activity ) );
1579+ $ this ->assertTrue ( \Activitypub \is_quote_activity ( $ activity ) );
15801580 }
15811581
15821582 /**
1583- * Test is_activity_quote function with quoteUrl property.
1583+ * Test is_quote_activity function with quoteUrl property.
15841584 *
1585- * @covers \Activitypub\is_activity_quote
1585+ * @covers \Activitypub\is_quote_activity
15861586 */
1587- public function test_is_activity_quote_with_quote_url () {
1587+ public function test_is_quote_activity_with_quote_url () {
15881588 $ activity = array (
15891589 'type ' => 'Create ' ,
15901590 'object ' => array (
@@ -1594,15 +1594,15 @@ public function test_is_activity_quote_with_quote_url() {
15941594 ),
15951595 );
15961596
1597- $ this ->assertTrue ( \Activitypub \is_activity_quote ( $ activity ) );
1597+ $ this ->assertTrue ( \Activitypub \is_quote_activity ( $ activity ) );
15981598 }
15991599
16001600 /**
1601- * Test is_activity_quote function with quoteUri property.
1601+ * Test is_quote_activity function with quoteUri property.
16021602 *
1603- * @covers \Activitypub\is_activity_quote
1603+ * @covers \Activitypub\is_quote_activity
16041604 */
1605- public function test_is_activity_quote_with_quote_uri () {
1605+ public function test_is_quote_activity_with_quote_uri () {
16061606 $ activity = array (
16071607 'type ' => 'Create ' ,
16081608 'object ' => array (
@@ -1612,15 +1612,15 @@ public function test_is_activity_quote_with_quote_uri() {
16121612 ),
16131613 );
16141614
1615- $ this ->assertTrue ( \Activitypub \is_activity_quote ( $ activity ) );
1615+ $ this ->assertTrue ( \Activitypub \is_quote_activity ( $ activity ) );
16161616 }
16171617
16181618 /**
1619- * Test is_activity_quote function with _misskey_quote property.
1619+ * Test is_quote_activity function with _misskey_quote property.
16201620 *
1621- * @covers \Activitypub\is_activity_quote
1621+ * @covers \Activitypub\is_quote_activity
16221622 */
1623- public function test_is_activity_quote_with_misskey_quote () {
1623+ public function test_is_quote_activity_with_misskey_quote () {
16241624 $ activity = array (
16251625 'type ' => 'Create ' ,
16261626 'object ' => array (
@@ -1630,15 +1630,15 @@ public function test_is_activity_quote_with_misskey_quote() {
16301630 ),
16311631 );
16321632
1633- $ this ->assertTrue ( \Activitypub \is_activity_quote ( $ activity ) );
1633+ $ this ->assertTrue ( \Activitypub \is_quote_activity ( $ activity ) );
16341634 }
16351635
16361636 /**
1637- * Test is_activity_quote returns false for non-quote.
1637+ * Test is_quote_activity returns false for non-quote.
16381638 *
1639- * @covers \Activitypub\is_activity_quote
1639+ * @covers \Activitypub\is_quote_activity
16401640 */
1641- public function test_is_activity_quote_returns_false_for_non_quote () {
1641+ public function test_is_quote_activity_returns_false_for_non_quote () {
16421642 $ activity = array (
16431643 'type ' => 'Create ' ,
16441644 'object ' => array (
@@ -1647,6 +1647,6 @@ public function test_is_activity_quote_returns_false_for_non_quote() {
16471647 ),
16481648 );
16491649
1650- $ this ->assertFalse ( \Activitypub \is_activity_quote ( $ activity ) );
1650+ $ this ->assertFalse ( \Activitypub \is_quote_activity ( $ activity ) );
16511651 }
16521652}
0 commit comments