##// END OF EJS Templates
tests: fix usage of false in test, in forms it's always with capital letter.
marcink -
r1568:b820766b default
parent child Browse files
Show More
@@ -518,12 +518,12 b' class DbManage(object):'
518 self.create_ui_settings(path)
518 self.create_ui_settings(path)
519
519
520 ui_config = [
520 ui_config = [
521 ('web', 'push_ssl', 'false'),
521 ('web', 'push_ssl', 'False'),
522 ('web', 'allow_archive', 'gz zip bz2'),
522 ('web', 'allow_archive', 'gz zip bz2'),
523 ('web', 'allow_push', '*'),
523 ('web', 'allow_push', '*'),
524 ('web', 'baseurl', '/'),
524 ('web', 'baseurl', '/'),
525 ('paths', '/', path),
525 ('paths', '/', path),
526 ('phases', 'publish', 'true')
526 ('phases', 'publish', 'True')
527 ]
527 ]
528 for section, key, value in ui_config:
528 for section, key, value in ui_config:
529 ui_conf = RhodeCodeUi()
529 ui_conf = RhodeCodeUi()
@@ -628,7 +628,7 b' class TestVcsSettings(object):'
628 'hooks_changegroup_push_logger': False,
628 'hooks_changegroup_push_logger': False,
629 'hooks_outgoing_pull_logger': False,
629 'hooks_outgoing_pull_logger': False,
630 'extensions_largefiles': False,
630 'extensions_largefiles': False,
631 'phases_publish': 'false',
631 'phases_publish': 'False',
632 'rhodecode_pr_merge_enabled': False,
632 'rhodecode_pr_merge_enabled': False,
633 'rhodecode_use_outdated_comments': False,
633 'rhodecode_use_outdated_comments': False,
634 'new_svn_branch': '',
634 'new_svn_branch': '',
@@ -933,7 +933,7 b' class TestCreateOrUpdateRepoSettings(obj'
933 'hooks_outgoing_pull_logger': False,
933 'hooks_outgoing_pull_logger': False,
934 'extensions_largefiles': False,
934 'extensions_largefiles': False,
935 'largefiles_usercache': '/example/largefiles-store',
935 'largefiles_usercache': '/example/largefiles-store',
936 'phases_publish': 'false',
936 'phases_publish': 'False',
937 'rhodecode_pr_merge_enabled': False,
937 'rhodecode_pr_merge_enabled': False,
938 'rhodecode_use_outdated_comments': False,
938 'rhodecode_use_outdated_comments': False,
939 'new_svn_branch': '',
939 'new_svn_branch': '',
General Comments 0
You need to be logged in to leave comments. Login now