Skip to content

Commit

Permalink
chore: delete owlbot.py (#151)
Browse files Browse the repository at this point in the history
* chore: delete owlbot.py

* 🦉 Updates from OwlBot

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* use the latest post processor image

* 🦉 Updates from OwlBot

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* 🦉 Updates from OwlBot

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
parthea and gcf-owl-bot[bot] authored Nov 12, 2021
1 parent 56d156a commit 07ed100
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions recaptcha_enterprise/snippets/test_create_assessment.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ def index() -> str:
@pytest.fixture(scope="module")
def browser() -> WebDriver:
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('--no-sandbox')
chrome_options.add_argument('--window-size=1420,1080')
chrome_options.add_argument('--headless')
chrome_options.add_argument('--disable-gpu')
chrome_options.add_argument("--no-sandbox")
chrome_options.add_argument("--window-size=1420,1080")
chrome_options.add_argument("--headless")
chrome_options.add_argument("--disable-gpu")
browser = webdriver.Chrome(chrome_options=chrome_options)
yield browser
browser.close()
Expand Down
2 changes: 1 addition & 1 deletion recaptcha_enterprise/snippets/test_site_key.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def test_update_site_key(capsys: CaptureFixture, recaptcha_site_key: str) -> Non
update_site_key(
project_id=GOOGLE_CLOUD_PROJECT,
recaptcha_site_key=recaptcha_site_key,
domain_name=DOMAIN_NAME
domain_name=DOMAIN_NAME,
)
out, _ = capsys.readouterr()
assert re.search("reCAPTCHA Site key successfully updated ! ", out)

0 comments on commit 07ed100

Please sign in to comment.