Skip to content

Commit 8756d82

Browse files
committedJul 9, 2014
Remove @group annotations
Summary: I'm pretty sure that `@group` annotations are useless now... see D9855. Also fixed various other minor issues. Test Plan: Eye-ball it. Reviewers: #blessed_reviewers, epriestley, chad Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, Korvin, hach-que Differential Revision: https://secure.phabricator.com/D9859
1 parent 1d4b064 commit 8756d82

File tree

431 files changed

+490
-1711
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

431 files changed

+490
-1711
lines changed
 

‎conf/default.conf.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@
798798
// '#/autobuilt/#',
799799
),
800800

801-
// If you set this to true, users can accept their own revisions. This action
801+
// If you set this to true, users can accept their own revisions. This action
802802
// is disabled by default because it's most likely not a behavior you want,
803803
// but it proves useful if you are working alone on a project and want to make
804804
// use of all of differential's features.
@@ -817,7 +817,7 @@
817817

818818
// If you set this to true, any user can reopen a revision so long as it has
819819
// been closed. This can be useful if a revision is accidentally closed or
820-
// if a developer changes his or her mind after closing a revision. If it is
820+
// if a developer changes his or her mind after closing a revision. If it is
821821
// false, reopening is not allowed.
822822
'differential.allow-reopen' => false,
823823

‎externals/balanced-php/tests/Balanced/SuiteTest.php

+8-10
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@
2727
* <li>$BALANCED_URL_ROOT If set applies to \Balanced\Settings::$url_root.
2828
* <li>$BALANCED_API_KEY If set applies to \Balanced\Settings::$api_key.
2929
* </ul>
30-
*
31-
* @group suite
3230
*/
3331
class SuiteTest extends \PHPUnit_Framework_TestCase
3432
{
@@ -784,17 +782,17 @@ function testBankAccountVerificationSuccess() {
784782
}
785783

786784
function testEvents() {
787-
$prev_num_events = Marketplace::mine()->events->total();
788-
$account = self::_createBuyer();
789-
$account->debit(123);
790-
$cur_num_events = Marketplace::mine()->events->total();
791-
$count = 0;
785+
$prev_num_events = Marketplace::mine()->events->total();
786+
$account = self::_createBuyer();
787+
$account->debit(123);
788+
$cur_num_events = Marketplace::mine()->events->total();
789+
$count = 0;
792790
while ($cur_num_events == $prev_num_events && $count < 10) {
793791
printf("waiting for events - %d, %d == %d\n", $count + 1, $cur_num_events, $prev_num_events);
794792
sleep(2); // 2 seconds
795-
$cur_num_events = Marketplace::mine()->events->total();
796-
$count += 1;
797-
}
793+
$cur_num_events = Marketplace::mine()->events->total();
794+
$count += 1;
795+
}
798796
$this->assertTrue($cur_num_events > $prev_num_events);
799797
}
800798
}

0 commit comments

Comments
 (0)
Failed to load comments.