Skip to content

Commit bb41830

Browse files
committed
Fix test
1 parent b53b964 commit bb41830

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ jobs:
782782
UNPROCESSED_COMMAND: ${{ steps.xcodebuild.outputs.unprocessed-command }}
783783
EXECUTED_COMMAND: ${{ steps.xcodebuild.outputs.executed-command }}
784784
run: |
785-
EXPECTED_COMMAND="xcodebuild -project ${INPUT_PROJECT} -scheme ${INPUT_SCHEME} test | xcpretty --color"
785+
EXPECTED_COMMAND="xcodebuild -project ${INPUT_PROJECT} -scheme ${INPUT_SCHEME} test"
786786
ACTUAL_COMMAND="${UNPROCESSED_COMMAND}"
787787
if [ "${EXPECTED_COMMAND}" != "${ACTUAL_COMMAND}" ]; then
788788
printf "::error::Executed command did not match expectations!\nExecuted: ${ACTUAL_COMMAND}\nExpected: ${EXPECTED_COMMAND}\n"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ For more information about the various inputs, also see `man xcodebuild`.
1313

1414
**Notes:**
1515
- If you are missing an input, you can pass them in the `build-settings` input. These will be passed along to `xcodebuild` as is.
16-
- If an enum input validation fails because you use a value that isn't yet known to this action, set `disable-enum-validation` to `true`.
16+
- If an enum input validation fails because you use a value not yet known to this action, set `disable-enum-validation` to `true`.
1717

1818
## Outputs
1919

0 commit comments

Comments
 (0)