Changeset 5767
- Timestamp:
- 05/13/2015 10:29:40 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/testcases/forums/template/counts.php
r5708 r5767 16 16 public function test_bbp_get_forum_subforum_count() { 17 17 $f1 = $this->factory->forum->create(); 18 $int_value = 9;18 $int_value = 3; 19 19 $formatted_value = bbp_number_format( $int_value ); 20 20 … … 49 49 public function test_bbp_get_forum_topic_count() { 50 50 $f = $this->factory->forum->create(); 51 $int_value = 9;51 $int_value = 3; 52 52 $formatted_value = bbp_number_format( $int_value ); 53 53 … … 82 82 ) ); 83 83 84 $int_value = 9;84 $int_value = 3; 85 85 $formatted_value = bbp_number_format( $int_value ); 86 86 … … 115 115 ) ); 116 116 117 $int_value = 9;117 $int_value = 3; 118 118 119 119 // Topic + Replies 120 $result = 10;120 $result = 4; 121 121 $formatted_result = bbp_number_format( $result ); 122 122 … … 148 148 public function test_bbp_get_forum_topic_count_hidden() { 149 149 $f = $this->factory->forum->create(); 150 $int_value = 9;150 $int_value = 3; 151 151 $formatted_value = bbp_number_format( $int_value ); 152 152
Note: See TracChangeset
for help on using the changeset viewer.