summaryrefslogtreecommitdiff
path: root/git_review
diff options
context:
space:
mode:
Diffstat (limited to 'git_review')
-rw-r--r--git_review/tests/__init__.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/git_review/tests/__init__.py b/git_review/tests/__init__.py
index c274cde..913458c 100644
--- a/git_review/tests/__init__.py
+++ b/git_review/tests/__init__.py
@@ -40,7 +40,7 @@ else:
WAR_URL = 'https://gerrit-releases.storage.googleapis.com/gerrit-3.4.4.war'
# Update GOLDEN_SITE_VER for every change altering golden site, including
# WAR_URL changes. Set new value to something unique (just +1 it for example)
-GOLDEN_SITE_VER = '6'
+GOLDEN_SITE_VER = '7'
# NOTE(yorik-sar): This function needs to be a perfect hash function for
@@ -164,8 +164,9 @@ class GerritHelpers(DirHelpers):
with open(golden_ver_file, 'w') as f:
f.write(GOLDEN_SITE_VER)
- # create SSH public key
- utils.run_cmd('ssh-keygen', '-t', 'rsa', '-b', '4096', '-m', 'PEM',
+ # Create SSH public key. This is not RSA because Jammy wants to
+ # do rsa + sha2 by default and Gerrit 3.4.4 does not understand this.
+ utils.run_cmd('ssh-keygen', '-t', 'ed25519',
'-f', self._dir('gsite', 'test_ssh_key'), '-N', '')
def _run_gerrit_cli(self, command, *args):