diff options
author | Joel Andres Granados <jgranado@redhat.com> | 2008-11-19 21:15:10 +0100 |
---|---|---|
committer | Joel Andres Granados <jgranado@redhat.com> | 2008-11-20 13:46:22 +0100 |
commit | c5d0300ce1f2cb221e1102db8d77251f68d0c3d0 (patch) | |
tree | 4a654278d54f1a58b4d460184673d5e110b5fbf6 /plugins/grub/grub.py | |
parent | b8d360b0142961972e4d7bfa67841542554725a3 (diff) | |
download | firstaidkit-c5d0300ce1f2cb221e1102db8d77251f68d0c3d0.tar.gz firstaidkit-c5d0300ce1f2cb221e1102db8d77251f68d0c3d0.tar.xz firstaidkit-c5d0300ce1f2cb221e1102db8d77251f68d0c3d0.zip |
testsuite/cli tests:
1. Do the test the right way. We were checking the exact output in order
to validate the correctness of the cli. Randomness in FAK and other
issues interfered with this test schema. We now check specific output
string in the whole output.
Diffstat (limited to 'plugins/grub/grub.py')
-rw-r--r-- | plugins/grub/grub.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/grub/grub.py b/plugins/grub/grub.py index 01ee65c..7fe928c 100644 --- a/plugins/grub/grub.py +++ b/plugins/grub/grub.py @@ -231,7 +231,7 @@ class Grub(Plugin): self.issue_grub_image.set(checked = True, happened = True, \ reporting = self._reporting, origin = self) else: - self.issue_grub_image.set(checking = False, happened = False, \ + self.issue_grub_image.set(checked = False, happened = False, \ reporting = self._reporting, origin = self) self._result = ReturnFailure |