Skip to content

Commit

Permalink
remove unneeded variable
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Jul 27, 2017
1 parent 3b4483d commit 06dcaaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Database/DatabaseSchemaBlueprintTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public function testDefaultCurrentTimestamp()
public function testUnsignedDecimalTable()
{
$base = new Blueprint('users', function ($table) {
$table->unsignedDecimal('money', 10, 2, true)->useCurrent();
$table->unsignedDecimal('money', 10, 2)->useCurrent();
});

$connection = m::mock('Illuminate\Database\Connection');
Expand Down

0 comments on commit 06dcaaa

Please sign in to comment.