Skip to content

Commit

Permalink
Merge pull request #17 from alik-r/fail_test_check
Browse files Browse the repository at this point in the history
Break payout on purpose to test auto rollback in CI/CD
  • Loading branch information
alik-r authored Nov 21, 2024
2 parents 1cb7bcb + 183369c commit 6ff5c01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/pkg/roulette/roulette.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func Payout(betType BetType, betValue interface{}, result RouletteResult) int {
betColor := betValue.(string)
if betColor == string(result.Color) {
if betColor == string(Green) {
return 35
return 2
}
return 1
}
Expand Down

0 comments on commit 6ff5c01

Please sign in to comment.