From 08ad88cf401dac9361d89a9f7ceca937c06595cd Mon Sep 17 00:00:00 2001 From: Danny Hermes Date: Tue, 3 Oct 2017 13:02:49 -0700 Subject: [PATCH] Fixing virutal->virtual typo. (#4108) Done via: $ git grep -l virutal | xargs sed -i s/virutal/virtual/g --- packages/google-cloud-python-speech/nox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/google-cloud-python-speech/nox.py b/packages/google-cloud-python-speech/nox.py index ee174668d021..b44e944c4d89 100644 --- a/packages/google-cloud-python-speech/nox.py +++ b/packages/google-cloud-python-speech/nox.py @@ -67,7 +67,7 @@ def system_tests(session, python_version): session.virtualenv_dirname = 'sys-' + python_version # Install all test dependencies, then install this package into the - # virutalenv's dist-packages. + # virtualenv's dist-packages. session.install('mock', 'pytest', *LOCAL_DEPS) session.install('../test_utils/', '../storage/') session.install('.')