diff options
author | Thomas Huth <thuth@redhat.com> | 2024-12-18 14:14:36 +0100 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2025-01-02 08:58:08 +0100 |
commit | 93a9fdc5504f15d319927c1497522cb72929d78e (patch) | |
tree | 3f1d2c09fbb1fcbef5ec52e63012df89fa41af3e | |
parent | 56d3a1482921e7e23233f3abcce9c29f3f56cb72 (diff) | |
download | qemu-93a9fdc5504f15d319927c1497522cb72929d78e.zip qemu-93a9fdc5504f15d319927c1497522cb72929d78e.tar.gz qemu-93a9fdc5504f15d319927c1497522cb72929d78e.tar.bz2 |
tests/functional/test_vnc: Remove the test_no_vnc test
This test matches exactly the first three lines of the following
test_no_vnc_change_password test, so there is exactly zero additional
test coverage in here.
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Message-ID: <20241218131439.255841-3-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rwxr-xr-x | tests/functional/test_vnc.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/functional/test_vnc.py b/tests/functional/test_vnc.py index e632856..e600d75 100755 --- a/tests/functional/test_vnc.py +++ b/tests/functional/test_vnc.py @@ -54,11 +54,6 @@ def find_free_ports(count: int) -> List[int]: class Vnc(QemuSystemTest): - def test_no_vnc(self): - self.vm.add_args('-nodefaults', '-S') - self.vm.launch() - self.assertFalse(self.vm.qmp('query-vnc')['return']['enabled']) - def test_no_vnc_change_password(self): self.vm.add_args('-nodefaults', '-S') self.vm.launch() |