Skip to content

Commit

Permalink
Fixing test namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
mtdowling committed May 12, 2015
1 parent 6a620f5 commit 1642695
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 10 deletions.
2 changes: 1 addition & 1 deletion tests/AggregateExceptionTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace GuzzleHttp\Tests\RejectedPromise;
namespace GuzzleHttp\Promise\Tests;

use GuzzleHttp\Promise\AggregateException;

Expand Down
7 changes: 6 additions & 1 deletion tests/EachPromiseTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
<?php
namespace GuzzleHttp\Promise;
namespace GuzzleHttp\Promise\Tests;

use GuzzleHttp\Promise\RejectedPromise;
use GuzzleHttp\Promise\FulfilledPromise;
use GuzzleHttp\Promise\Promise;
use GuzzleHttp\Promise\PromiseInterface;
use GuzzleHttp\Promise\EachPromise;
use GuzzleHttp\Promise as P;

/**
Expand Down
2 changes: 1 addition & 1 deletion tests/FulfilledPromiseTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace GuzzleHttp\Tests\Promise\RejectedPromise;
namespace GuzzleHttp\Tests\Promise;

use GuzzleHttp\Promise\Promise;
use GuzzleHttp\Promise\FulfilledPromise;
Expand Down
2 changes: 1 addition & 1 deletion tests/NotPromiseInstance.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace GuzzleHttp\Tests;
namespace GuzzleHttp\Promise\Tests;

use GuzzleHttp\Promise\Promise;
use GuzzleHttp\Promise\PromiseInterface;
Expand Down
2 changes: 1 addition & 1 deletion tests/PromiseTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace GuzzleHttp\Tests;
namespace GuzzleHttp\Promise\Tests;

use GuzzleHttp\Promise\CancellationException;
use GuzzleHttp\Promise as P;
Expand Down
2 changes: 1 addition & 1 deletion tests/RejectedPromiseTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace GuzzleHttp\Tests\RejectedPromise;
namespace GuzzleHttp\Promise\Tests;

use GuzzleHttp\Promise\Promise;
use GuzzleHttp\Promise\RejectedPromise;
Expand Down
2 changes: 1 addition & 1 deletion tests/RejectionExceptionTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace GuzzleHttp\Tests;
namespace GuzzleHttp\Promise\Tests;

use GuzzleHttp\Promise\RejectionException;

Expand Down
2 changes: 1 addition & 1 deletion tests/TaskQueueTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace GuzzleHttp\Test;
namespace GuzzleHttp\Promise\Test;

use GuzzleHttp\Promise\TaskQueue;

Expand Down
2 changes: 1 addition & 1 deletion tests/Thennable.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace GuzzleHttp\Tests;
namespace GuzzleHttp\Promise\Tests;

use GuzzleHttp\Promise\Promise;

Expand Down
2 changes: 1 addition & 1 deletion tests/functionsTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace GuzzleHttp\Tests;
namespace GuzzleHttp\Promise\Tests;

use GuzzleHttp\Promise as P;
use GuzzleHttp\Promise\FulfilledPromise;
Expand Down

0 comments on commit 1642695

Please sign in to comment.