Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis Smet committed Mar 11, 2024
1 parent 02f7723 commit 5ba0b5a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ As a result of the validation process, you will receive a human-readable table w
Default output format is `table`:

```
./csv-blueprint validate:csv --output=table --csv=./tests/fixtures/demo.csv --schema=./tests/schemas/demo_invalid.yml
./csv-blueprint validate:csv --output=table
CSV : ./tests/fixtures/demo.csv
Expand Down Expand Up @@ -230,7 +230,7 @@ CSV file is not valid! Found 8 errors.

Optional output format `text`:
```sh
./csv-blueprint validate:csv --output=text --csv=./tests/fixtures/demo.csv --schema=./tests/schemas/demo_invalid.yml
./csv-blueprint validate:csv --output=text
```

![Output - Text](.github/assets/output-text.png)
Expand Down
2 changes: 1 addition & 1 deletion tests/Blueprint/CommandsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public function testCreateValidateNegative(): void

isFileContains(\implode("\n", [
'```',
'./csv-blueprint validate:csv --output=table --csv=./tests/fixtures/demo.csv --schema=./tests/schemas/demo_invalid.yml',
'./csv-blueprint validate:csv --output=table',
'',
'',
\str_replace($rootPath, '.', $expected),
Expand Down

0 comments on commit 5ba0b5a

Please sign in to comment.