Skip to content

Commit 2a21bcf

Browse files
committed
rename called command according to command name
1 parent 5907f83 commit 2a21bcf

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/DumperTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function it_can_dump_all_tables_without_modifications()
4949

5050
$this->app['config']['masked-dump.default'] = DumpSchema::define()->allTables();
5151

52-
$this->artisan('db:dump', [
52+
$this->artisan('db:masked-dump', [
5353
'output' => $outputFile
5454
]);
5555

@@ -78,7 +78,7 @@ public function it_can_mask_user_names()
7878
$table->mask('name');
7979
});
8080

81-
$this->artisan('db:dump', [
81+
$this->artisan('db:masked-dump', [
8282
'output' => $outputFile
8383
]);
8484

@@ -107,7 +107,7 @@ public function it_can_replace_columns_with_static_values()
107107
$table->replace('password', 'test');
108108
});
109109

110-
$this->artisan('db:dump', [
110+
$this->artisan('db:masked-dump', [
111111
'output' => $outputFile
112112
]);
113113

@@ -137,7 +137,7 @@ public function it_can_replace_columns_with_faker_values()
137137
$table->replace('email', $faker->safeEmail());
138138
});
139139

140-
$this->artisan('db:dump', [
140+
$this->artisan('db:masked-dump', [
141141
'output' => $outputFile
142142
]);
143143

@@ -165,7 +165,7 @@ public function it_can_dump_certain_tables_as_schema_only()
165165
->schemaOnly('migrations')
166166
->schemaOnly('users');
167167

168-
$this->artisan('db:dump', [
168+
$this->artisan('db:masked-dump', [
169169
'output' => $outputFile
170170
]);
171171

0 commit comments

Comments
 (0)