Skip to content

Commit

Permalink
Updating tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
kporras07 committed Sep 15, 2020
1 parent 2cb85ef commit 57fc135
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/ScriptHandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ function test_symlinks_creation()
->expects($this->exactly(2))
->method('write')
->withConsecutive(
['<info>Creating symlink for "foo" into "bar"</info>'],
['<info>Creating symlink for "bar.txt" into "foo.txt"</info>']
['<info>Copying folder "foo" into "bar"</info>'],
['<info>Copying folder "bar.txt" into "foo.txt"</info>']
);

$this->package->setExtra([
Expand Down Expand Up @@ -83,8 +83,8 @@ function test_input_sanitization()
->expects($this->exactly(1))
->method('write')
->withConsecutive(
['<info>Creating symlink for "foo" into "bar"</info>'],
['<info>Creating symlink for "foo2" into "bar"</info>']
['<info>Copying folder "foo" into "bar"</info>'],
['<info>Copying folder "foo2" into "bar"</info>']
);

$this->package->setExtra([
Expand Down

0 comments on commit 57fc135

Please sign in to comment.