diff --git a/playbooks/zuul/gerrit/files/static/cla.html b/playbooks/zuul/gerrit/files/static/cla.html index 83f8688a7a..8a61aec881 100644 --- a/playbooks/zuul/gerrit/files/static/cla.html +++ b/playbooks/zuul/gerrit/files/static/cla.html @@ -1,29 +1,15 @@
-In order to clarify the intellectual property license granted with -Contributions from any person or entity, the OpenStack Project (the "Project") -must have a Contributor License Agreement ("Agreement") on file that has been -signed by each Contributor, indicating agreement to the license terms below. -This license is for your protection as a Contributor as well as the protection -of OpenStack Foundation as Project manager (the "Project Manager") and the -Project users; it does not change your rights to use your own Contributions for -any other purpose. +In order to clarify the intellectual property license granted with Contributions from any person or entity, the OpenStack Foundation d/b/a Open Infrastructure Foundation must have a Contributor License Agreement ("Agreement") on file that has been signed by each Contributor, indicating agreement to the license terms below for Contributions to any project owned or managed by the OpenStack Foundation d/b/a Open Infrastructure Foundation ("Project"). This license is for your protection as a Contributor as well as the protection of OpenStack Foundation d/b/a Open Infrastructure Foundation as Project Manager (the "Project Manager") and the Project users; it does not change your rights to use your own Contributions for any other purpose.
diff --git a/testinfra/test_gerrit.py b/testinfra/test_gerrit.py index fd9218bb19..c824f7ea08 100644 --- a/testinfra/test_gerrit.py +++ b/testinfra/test_gerrit.py @@ -58,10 +58,10 @@ def test_opendev_logo(host): assert '200 OK' in cmd.stdout assert 'Content-Type: image/png' in cmd.stdout -def test_openstack_cla(host): +def test_openinfra_cla(host): cmd = host.run('curl --include --insecure ' '--resolve review.opendev.org:443:127.0.0.1 ' 'https://review.opendev.org/static/cla.html') assert '200 OK' in cmd.stdout assert 'Content-Type: text/html' in cmd.stdout - assert 'OpenStack Project Individual Contributor License Agreement' in cmd.stdout + assert 'OpenInfra Foundation Individual Contributor License Agreement' in cmd.stdout