From 5a70e9e8e85f582ba95693c3cda36f37f2cae1f7 Mon Sep 17 00:00:00 2001 From: Sebastian Sch Date: Sun, 7 Jan 2024 18:31:35 +0200 Subject: [PATCH] nit: small fix to a test and git ignore update Signed-off-by: Sebastian Sch --- .gitignore | 3 ++- test/conformance/tests/test_sriov_operator.go | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e63284190e..6761d7ea12 100644 --- a/.gitignore +++ b/.gitignore @@ -82,4 +82,5 @@ tags # End of https://www.gitignore.io/api/go,vim,emacs,visualstudiocode #IDE (GoLand) specific .idea/ - +# test-environment files +registry-login.conf diff --git a/test/conformance/tests/test_sriov_operator.go b/test/conformance/tests/test_sriov_operator.go index 809a2c1bdc..208ed2b9fc 100644 --- a/test/conformance/tests/test_sriov_operator.go +++ b/test/conformance/tests/test_sriov_operator.go @@ -1193,7 +1193,7 @@ var _ = Describe("[sriov] operator", func() { capacity, _ = resNum.AsInt64() res["openshift.io/testresource1"] = capacity return res - }, 2*time.Minute, time.Second).Should(Equal(map[string]int64{ + }, 15*time.Minute, time.Second).Should(Equal(map[string]int64{ "openshift.io/testresource": int64(3), "openshift.io/testresource1": int64(2), }))