forked from openlp/openlp
Fix Jenkins, tests and spellings
This commit is contained in:
parent
54dbafed8e
commit
1cfd33df30
@ -43,6 +43,7 @@ class EditVerseForm(QtGui.QDialog, Ui_EditVerseDialog):
|
||||
"""
|
||||
super(EditVerseForm, self).__init__(parent)
|
||||
self.setupUi(self)
|
||||
self.has_single_verse = False
|
||||
self.insert_button.clicked.connect(self.on_insert_button_clicked)
|
||||
self.split_button.clicked.connect(self.on_split_button_clicked)
|
||||
self.verse_text_edit.cursorPositionChanged.connect(self.on_cursor_position_changed)
|
||||
|
@ -91,7 +91,7 @@ class JenkinsTrigger(object):
|
||||
"""
|
||||
self.token = token
|
||||
self.repo_name = get_repo_name()
|
||||
self.jenkins_instance = Jenkins(JENKINS_URL, verify=False)
|
||||
self.jenkins_instance = Jenkins(JENKINS_URL)
|
||||
|
||||
def trigger_build(self):
|
||||
"""
|
||||
|
@ -119,7 +119,7 @@ class TestBibleHTTP(TestCase):
|
||||
|
||||
def bibleserver_get_bibles_test(self):
|
||||
"""
|
||||
Test getting list of bibles from BibelServer.com
|
||||
Test getting list of bibles from BibleServer.com
|
||||
"""
|
||||
# GIVEN: A new Bible Server extraction class
|
||||
handler = BSExtract()
|
||||
@ -134,7 +134,7 @@ class TestBibleHTTP(TestCase):
|
||||
|
||||
def biblegateway_get_bibles_test(self):
|
||||
"""
|
||||
Test getting list of bibles from BibelGateway.com
|
||||
Test getting list of bibles from BibleGateway.com
|
||||
"""
|
||||
# GIVEN: A new Bible Gateway extraction class
|
||||
handler = BGExtract()
|
||||
|
Loading…
Reference in New Issue
Block a user