Skip to content

Commit 1c6f67b

Browse files
committed
tests: Fix tests with latest bugzilla values
1 parent b066c1d commit 1c6f67b

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

tests/ro_functional.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ class BZGnome(BaseTest):
131131

132132
class BZFDO(BaseTest):
133133
url = "https://bugs.freedesktop.org/xmlrpc.cgi"
134-
bzclass = bugzilla.Bugzilla42
134+
bzclass = bugzilla.Bugzilla44
135135
closestatus = "CLOSED,RESOLVED"
136136

137137
test0 = BaseTest._testBZClass

tests/rw_functional.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ def test6ModifyEmails(self):
298298

299299
bug.refresh()
300300
self.assertEquals(bug.cc, [])
301-
self.assertEquals(bug.assigned_to, "wwoods@redhat.com")
301+
self.assertEquals(bug.assigned_to, "crobinso@redhat.com")
302302
self.assertEquals(bug.qa_contact, "[email protected]")
303303

304304

@@ -629,7 +629,7 @@ def test10Login(self):
629629
630630
"--password foobar login" % self.url, None,
631631
expectfail=True)
632-
self.assertTrue("Logging in... Login failed:" in ret)
632+
self.assertTrue("Login failed: " in ret)
633633

634634

635635
def test11UserUpdate(self):
@@ -771,11 +771,11 @@ def _test14ExternalTrackersQuery(self, bz, ext_type_desc, ext_bug_id):
771771

772772
def test14ExternalTrackersQuery(self):
773773
bz = self.bzclass(url=self.url, cookiefile=cf, tokenfile=tf)
774-
ext_type_desc = "Mozilla Foundation"
775-
ext_bug_id = 913904
774+
ext_type_desc = "FreeDesktop.org"
775+
ext_bug_id = 64714
776776

777777
# Closed RH Bugzilla bug with external tracker
778-
bugid = 1007135
778+
bugid = 973374
779779
assert bugid in \
780780
self._test14ExternalTrackersQuery(bz, ext_type_desc, ext_bug_id)
781781

0 commit comments

Comments
 (0)