Sophie

Sophie

distrib > Mageia > 9 > armv7hl > by-pkgid > 163246f936b343e2c5f70c025778ee55 > files > 1

golang-github-urfave-cli-2-2.14.1-3.mga9.src.rpm

From a63380e8c3fabe8f72896b3481b8d16ac3e10e67 Mon Sep 17 00:00:00 2001
From: Maxwell G <gotmax@e.email>
Date: Mon, 26 Sep 2022 22:35:33 -0500
Subject: [PATCH] tests: Fix int overflow on i686

---
 flag_test.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flag_test.go b/flag_test.go
index 001bc22..205abab 100644
--- a/flag_test.go
+++ b/flag_test.go
@@ -112,7 +112,7 @@ func TestFlagsFromEnv(t *testing.T) {
 		{"1", 1, &IntFlag{Name: "seconds", EnvVars: []string{"SECONDS"}}, ""},
 		{"08", 8, &IntFlag{Name: "seconds", EnvVars: []string{"SECONDS"}, Base: 10}, ""},
 		{"755", 493, &IntFlag{Name: "seconds", EnvVars: []string{"SECONDS"}, Base: 8}, ""},
-		{"deadBEEF", 3735928559, &IntFlag{Name: "seconds", EnvVars: []string{"SECONDS"}, Base: 16}, ""},
+		{"deadBEE", 233495534, &IntFlag{Name: "seconds", EnvVars: []string{"SECONDS"}, Base: 16}, ""},
 		{"08", 0, &IntFlag{Name: "seconds", EnvVars: []string{"SECONDS"}, Base: 0}, `could not parse "08" as int value from environment variable "SECONDS" for flag seconds: .*`},
 		{"1.2", 0, &IntFlag{Name: "seconds", EnvVars: []string{"SECONDS"}}, `could not parse "1.2" as int value from environment variable "SECONDS" for flag seconds: .*`},
 		{"foobar", 0, &IntFlag{Name: "seconds", EnvVars: []string{"SECONDS"}}, `could not parse "foobar" as int value from environment variable "SECONDS" for flag seconds: .*`},
-- 
2.37.3