Skip to content

Commit

Permalink
Fixed tests namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
stevebauman committed May 8, 2015
1 parent 399acab commit fbaf10a
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion tests/FunctionalTestCase.php
@@ -1,6 +1,6 @@
<?php

namespace Stevebauman\Inventory\tests;
namespace Stevebauman\Inventory\Tests;

use Illuminate\Database\Capsule\Manager as DB;

Expand Down
2 changes: 1 addition & 1 deletion tests/InventorySkuTest.php
@@ -1,6 +1,6 @@
<?php

namespace Stevebauman\Inventory\tests;
namespace Stevebauman\Inventory\Tests;

use Illuminate\Support\Facades\Lang;
use Illuminate\Support\Facades\Event;
Expand Down
2 changes: 1 addition & 1 deletion tests/InventoryStockTest.php
@@ -1,6 +1,6 @@
<?php

namespace Stevebauman\Inventory\tests;
namespace Stevebauman\Inventory\Tests;

use Illuminate\Support\Facades\Event;
use Illuminate\Support\Facades\DB;
Expand Down
2 changes: 1 addition & 1 deletion tests/InventorySupplierTest.php
@@ -1,6 +1,6 @@
<?php

namespace Stevebauman\Inventory\tests;
namespace Stevebauman\Inventory\Tests;

use Stevebauman\Inventory\Models\Supplier;
use Stevebauman\Inventory\Models\Inventory;
Expand Down
2 changes: 1 addition & 1 deletion tests/InventoryTest.php
@@ -1,6 +1,6 @@
<?php

namespace Stevebauman\Inventory\tests;
namespace Stevebauman\Inventory\Tests;

use Stevebauman\Inventory\Models\Location;
use Stevebauman\Inventory\Models\Metric;
Expand Down
2 changes: 1 addition & 1 deletion tests/InventoryVariantTest.php
@@ -1,6 +1,6 @@
<?php

namespace Stevebauman\Inventory\tests;
namespace Stevebauman\Inventory\Tests;

use Illuminate\Support\Facades\Event;
use Illuminate\Support\Facades\DB;
Expand Down
2 changes: 1 addition & 1 deletion tests/Transactions/InventoryTransactionBackOrderTest.php
@@ -1,6 +1,6 @@
<?php

namespace Stevebauman\Inventory\tests\Transactions;
namespace Stevebauman\Inventory\Tests\Transactions;

use Illuminate\Support\Facades\Lang;
use Stevebauman\Inventory\Models\InventoryTransaction;
Expand Down
2 changes: 1 addition & 1 deletion tests/Transactions/InventoryTransactionCancelledTest.php
@@ -1,6 +1,6 @@
<?php

namespace Stevebauman\Inventory\tests\Transactions;
namespace Stevebauman\Inventory\Tests\Transactions;

use Illuminate\Support\Facades\Lang;
use Stevebauman\Inventory\Models\InventoryTransaction;
Expand Down
2 changes: 1 addition & 1 deletion tests/Transactions/InventoryTransactionCheckoutTest.php
@@ -1,6 +1,6 @@
<?php

namespace Stevebauman\Inventory\tests\Transactions;
namespace Stevebauman\Inventory\Tests\Transactions;

use Illuminate\Support\Facades\Lang;
use Illuminate\Support\Facades\DB;
Expand Down
2 changes: 1 addition & 1 deletion tests/Transactions/InventoryTransactionHoldTest.php
@@ -1,6 +1,6 @@
<?php

namespace Stevebauman\Inventory\tests\Transactions;
namespace Stevebauman\Inventory\Tests\Transactions;

use Illuminate\Support\Facades\Lang;
use Stevebauman\Inventory\Models\InventoryTransaction;
Expand Down
2 changes: 1 addition & 1 deletion tests/Transactions/InventoryTransactionOrderedTest.php
@@ -1,6 +1,6 @@
<?php

namespace Stevebauman\Inventory\tests\Transactions;
namespace Stevebauman\Inventory\Tests\Transactions;

use Illuminate\Support\Facades\Lang;
use Stevebauman\Inventory\Models\InventoryTransaction;
Expand Down
2 changes: 1 addition & 1 deletion tests/Transactions/InventoryTransactionReleaseTest.php
@@ -1,6 +1,6 @@
<?php

namespace Stevebauman\Inventory\tests\Transactions;
namespace Stevebauman\Inventory\Tests\Transactions;

use Illuminate\Support\Facades\Lang;
use Stevebauman\Inventory\Models\InventoryTransaction;
Expand Down
2 changes: 1 addition & 1 deletion tests/Transactions/InventoryTransactionRemoveTest.php
@@ -1,6 +1,6 @@
<?php

namespace Stevebauman\Inventory\tests\Transactions;
namespace Stevebauman\Inventory\Tests\Transactions;

use Illuminate\Support\Facades\Lang;
use Stevebauman\Inventory\Models\InventoryTransaction;
Expand Down
2 changes: 1 addition & 1 deletion tests/Transactions/InventoryTransactionReservedTest.php
@@ -1,6 +1,6 @@
<?php

namespace Stevebauman\Inventory\tests\Transactions;
namespace Stevebauman\Inventory\Tests\Transactions;

use Illuminate\Support\Facades\Lang;
use Stevebauman\Inventory\Models\InventoryTransaction;
Expand Down
2 changes: 1 addition & 1 deletion tests/Transactions/InventoryTransactionReturnedTest.php
@@ -1,6 +1,6 @@
<?php

namespace Stevebauman\Inventory\tests\Transactions;
namespace Stevebauman\Inventory\Tests\Transactions;

use Illuminate\Support\Facades\Lang;
use Stevebauman\Inventory\Models\InventoryTransaction;
Expand Down
2 changes: 1 addition & 1 deletion tests/Transactions/InventoryTransactionSoldTest.php
@@ -1,6 +1,6 @@
<?php

namespace Stevebauman\Inventory\tests\Transactions;
namespace Stevebauman\Inventory\Tests\Transactions;

use Illuminate\Support\Facades\Lang;
use Stevebauman\Inventory\Models\InventoryTransaction;
Expand Down
2 changes: 1 addition & 1 deletion tests/Transactions/InventoryTransactionTest.php
@@ -1,6 +1,6 @@
<?php

namespace Stevebauman\Inventory\tests\Transactions;
namespace Stevebauman\Inventory\Tests\Transactions;

use Stevebauman\Inventory\Models\InventoryTransactionHistory;
use Stevebauman\Inventory\Models\InventoryTransaction;
Expand Down

0 comments on commit fbaf10a

Please sign in to comment.