s390x: remove pmu from test

Remove pmu option because it is not used and the test TestQemuS390xCPUModel
fails because the option is present

Fixes: #1329

Signed-off-by: Alice Frosi <afrosi@de.ibm.com>
This commit is contained in:
Alice Frosi 2019-03-06 15:29:26 +01:00
parent 6242af34e4
commit 8ba27e14a1

View File

@ -30,7 +30,7 @@ func TestQemuS390xCPUModel(t *testing.T) {
assert.Equal(expectedOut, model)
s390x.enableNestingChecks()
expectedOut = defaultCPUModel + ",pmu=off"
expectedOut = defaultCPUModel
model = s390x.cpuModel()
assert.Equal(expectedOut, model)
}