summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2008-05-02 12:41:20 -0400
committerMichael DeHaan <mdehaan@redhat.com>2008-05-02 12:41:20 -0400
commit13eff0d1bb7e36569a00bcd291d73781ab2351e4 (patch)
tree7db31b5904982b39d8ee39a192dbe037345f21c8 /tests
parent82f4bb814835a8aadcfe5cbba8bfbc4359c34b39 (diff)
downloadthird_party-cobbler-13eff0d1bb7e36569a00bcd291d73781ab2351e4.tar.gz
third_party-cobbler-13eff0d1bb7e36569a00bcd291d73781ab2351e4.tar.xz
third_party-cobbler-13eff0d1bb7e36569a00bcd291d73781ab2351e4.zip
Adjusting the dhcp patch some, prior to moving it all into modules/
Diffstat (limited to 'tests')
-rw-r--r--tests/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tests.py b/tests/tests.py
index bb64dd1..02d53be 100644
--- a/tests/tests.py
+++ b/tests/tests.py
@@ -743,7 +743,7 @@ class SyncContents(BootTest):
fh = open("/tftpboot/pxelinux.cfg/%s" % converted)
data = fh.read()
- self.assertTrue(data.find("op=ks") != -1)
+ self.assertTrue(data.find("/op/ks/") != -1)
fh.close()
# ensure that after sync is applied, the blender cache still allows
@@ -753,7 +753,7 @@ class SyncContents(BootTest):
self.api.sync()
fh = open("/tftpboot/pxelinux.cfg/%s" % converted)
data = fh.read()
- self.assertTrue(data.find("op=ks") != -1)
+ self.assertTrue(data.find("/op/ks/") != -1)
fh.close()