We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a3fb65 commit 142ec35Copy full SHA for 142ec35
testing/integration/upgrade_fleet_test.go
@@ -112,13 +112,17 @@ func TestFleetManagedUpgradePrivilegedFIPS(t *testing.T) {
112
Group: FleetPrivileged,
113
Stack: &define.Stack{},
114
OS: []define.OS{
115
- define.Linux,
+ {Type: define.Linux},
116
},
117
Local: false, // requires Agent installation
118
Sudo: true, // requires Agent installation
119
FIPS: true,
120
})
121
122
+ // parse the version we are testing
123
+ currentVersion, err := version.ParseVersion(define.Version())
124
+ require.NoError(t, err)
125
+
126
// We need to start the upgrade from a FIPS-capable version
127
if !isFIPSCapableVersion(currentVersion) {
128
t.Skipf(
0 commit comments