Index: tests/phpunit/testcases/replies/functions/reply.php
===================================================================
--- tests/phpunit/testcases/replies/functions/reply.php	(revision 5891)
+++ tests/phpunit/testcases/replies/functions/reply.php	(working copy)
@@ -32,10 +32,13 @@
 			),
 		) );

+		$reply = bbp_get_reply( $r );
+
 		// reply post
 		$this->assertSame( 'Reply To: Topic 1', bbp_get_reply_title( $r ) );
 		$this->assertSame( 'publish', bbp_get_reply_status( $r ) );
 		$this->assertSame( $t, wp_get_post_parent_id( $r ) ); // post parent
+		$this->assertEquals( 'http://' . WP_TESTS_DOMAIN . '/?reply=' . $reply->post_name, $reply->guid );

 		// reply meta
 		$this->assertSame( $f, bbp_get_reply_forum_id( $r ) ); // _bbp_forum_id
Index: tests/phpunit/testcases/topics/functions/topic.php
===================================================================
--- tests/phpunit/testcases/topics/functions/topic.php	(revision 5891)
+++ tests/phpunit/testcases/topics/functions/topic.php	(working copy)
@@ -37,10 +37,13 @@
 			),
 		) );

+		$topic = bbp_get_topic( $t );
+
 		// Topic post
 		$this->assertSame( 'Topic 1', bbp_get_topic_title( $t ) );
 		$this->assertSame( 'publish', bbp_get_topic_status( $t ) );
 		$this->assertSame( $f, wp_get_post_parent_id( $t ) ); // post parent
+		$this->assertEquals( 'http://' . WP_TESTS_DOMAIN . '/?topic=' . $topic->post_name, $topic->guid );

 		// Topic meta
 		$this->assertSame( $f, bbp_get_topic_forum_id( $t ) ); // _bbp_forum_id
