Skip to content

Commit

Permalink
Fix tests, failing due to the wrong error
Browse files Browse the repository at this point in the history
  • Loading branch information
Vampire committed Feb 2, 2023
1 parent 67768d6 commit f8c2328
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.main.kts
Original file line number Diff line number Diff line change
Expand Up @@ -207,15 +207,15 @@ workflowWithCopyright(
"environment" to environments,
"distribution" to listOf(
mapOf(
"id" to "invalid",
"user-id" to "invalid",
"label" to "invalid"
),
mapOf(
"id" to "",
"user-id" to "",
"label" to ""
),
mapOf(
"id" to null,
"user-id" to null,
"label" to "null"
)
)
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ jobs:
- windows-2022
- windows-latest
distribution:
- id: invalid
- user-id: invalid
label: invalid
- id: ''
- user-id: ''
label: ''
- id: null
- user-id: null
label: 'null'
steps:
- id: step-0
Expand Down

0 comments on commit f8c2328

Please sign in to comment.