Skip to content

Commit

Permalink
Fix testing class namespaces (#383)
Browse files Browse the repository at this point in the history
Co-authored-by: peter279k <peter279k@gmail.com>
  • Loading branch information
k0ka and peter279k authored Jan 7, 2024
1 parent ac3ca5c commit 2804874
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion tests/integration/Identity/v2/CoreTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace OpenStack\integration\Identity\v2;
namespace OpenStack\Integration\Identity\v2;

use OpenStack\Integration\TestCase;

Expand Down
2 changes: 1 addition & 1 deletion tests/integration/ObjectStore/v1/CoreTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace OpenStack\integration\ObjectStore\v1;
namespace OpenStack\Integration\ObjectStore\v1;

use OpenStack\Integration\TestCase;
use OpenStack\Integration\Utils;
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/Common/Transport/MiddlewareTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace unit\Common\Transport;
namespace OpenStack\Test\Common\Transport;

use GuzzleHttp\Handler\MockHandler;
use GuzzleHttp\Psr7\Request;
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/Images/v2/Models/ImageTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace OpensTack\Test\Images\v2\Models;
namespace OpenStack\Test\Images\v2\Models;

use GuzzleHttp\Psr7\Response;
use GuzzleHttp\Psr7\Stream;
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/Images/v2/Models/MemberTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace unit\Images\v2\Models;
namespace OpenStack\Test\Images\v2\Models;

use GuzzleHttp\Psr7\Response;
use OpenStack\Images\v2\Api;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace unit\Networking\v2\Extensions\Layer3\Models;
namespace OpenStack\Test\Networking\v2\Extensions\Layer3\Models;

use GuzzleHttp\Psr7\Response;
use OpenStack\Test\TestCase;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace unit\Networking\v2\Extensions\SecurityGroups;
namespace OpenStack\Test\Networking\v2\Extensions\SecurityGroups;

use GuzzleHttp\Psr7\Response;
use OpenStack\Test\TestCase;
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/Networking/v2/Models/PortTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace OpenStack\Test\Subneting\v2\Models;
namespace OpenStack\Test\Networking\v2\Models;

use GuzzleHttp\Psr7\Response;
use OpenStack\Networking\v2\Api;
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/Networking/v2/Models/QuotaTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace OpenStack\Test\Subneting\v2\Models;
namespace OpenStack\Test\Networking\v2\Models;

use GuzzleHttp\Psr7\Response;
use OpenStack\Networking\v2\Api;
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/Networking/v2/Models/SubnetTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace OpenStack\Test\Subneting\v2\Models;
namespace OpenStack\Test\Networking\v2\Models;

use GuzzleHttp\Psr7\Response;
use OpenStack\Networking\v2\Api;
Expand Down
1 change: 0 additions & 1 deletion tests/unit/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
use GuzzleHttp\Psr7\Message;
use GuzzleHttp\Psr7\Response;
use GuzzleHttp\Psr7\Utils;
use Prophecy\Argument;

abstract class TestCase extends \PHPUnit\Framework\TestCase
{
Expand Down

0 comments on commit 2804874

Please sign in to comment.