curtin-dev team mailing list archive
-
curtin-dev team
-
Mailing list archive
-
Message #01113
[Merge] ~raharper/curtin:fix/dont-add-eoan-tests into curtin:master
Ryan Harper has proposed merging ~raharper/curtin:fix/dont-add-eoan-tests into curtin:master.
Commit message:
vmtests: Replace newly added Eoan test with Groovy
Eoan is EOL, replace Eoan entry in newly added test with Groovy
Requested reviews:
Server Team CI bot (server-team-bot): continuous-integration
curtin developers (curtin-dev)
For more details, see:
https://code.launchpad.net/~raharper/curtin/+git/curtin/+merge/394297
--
Your team curtin developers is requested to review the proposed merge of ~raharper/curtin:fix/dont-add-eoan-tests into curtin:master.
diff --git a/tests/vmtests/test_raid_partition_to_disk.py b/tests/vmtests/test_raid_partition_to_disk.py
index 1bb2cc5..4635713 100644
--- a/tests/vmtests/test_raid_partition_to_disk.py
+++ b/tests/vmtests/test_raid_partition_to_disk.py
@@ -18,11 +18,12 @@ class BionicTestRAIDPartitionToDisk(relbase.bionic, TestRAIDPartitionToDisk):
__test__ = True
-class EoanTestRAIDPartitionToDisk(relbase.eoan, TestRAIDPartitionToDisk):
+class FocalTestRAIDPartitionToDisk(relbase.focal, TestRAIDPartitionToDisk):
__test__ = True
-class FocalTestRAIDPartitionToDisk(relbase.focal, TestRAIDPartitionToDisk):
+class GroovyTestRAIDPartitionToDisk(relbase.groovy, TestRAIDPartitionToDisk):
__test__ = True
+
# vi: ts=4 expandtab syntax=python