Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszcl committed Dec 4, 2024
1 parent d2a7d47 commit 48bf79a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/flakeguard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ jobs:
"type": "section",
"text": {
"type": "mrkdwn",
"text": "${{ inputs.runAllTests == true && format('Ran all tests for `{0}` branch.', inputs.headRef) || format('Ran changed tests between `{0}` and `{1}` (`{2}`).', inputs.baseRef, needs.get-tests.outputs.git_head_short_sha, env.GIT_HEAD_REF) }}"
"text": "${{ inputs.runAllTests == true && format('Ran all tests for `{0}` branch.', env.GIT_HEAD_REF) || format('Ran changed tests between `{0}` and `{1}` (`{2}`).', inputs.baseRef, needs.get-tests.outputs.git_head_short_sha, env.GIT_HEAD_REF) }}"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion core/web/resolver/spec_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func TestResolver_CronSpec(t *testing.T) {
Type: job.Cron,
CronSpec: &job.CronSpec{
CronSchedule: "CRON_TZ=UTC 0 0 1 1 *",
EVMChainID: ubig.NewI(45),
EVMChainID: ubig.NewI(42),
CreatedAt: f.Timestamp(),
},
}, nil)
Expand Down

0 comments on commit 48bf79a

Please sign in to comment.