summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIrina Truong <i.chernyavska@gmail.com>2018-02-15 08:54:28 -0700
committerGitHub <noreply@github.com>2018-02-15 08:54:28 -0700
commit9764219f6da245b5febb81b73f48dadd8a699471 (patch)
tree4ea379154c54fc32d6f596753ec03c114717b9d8
parenteee8b06a5c87490c62efb6eed1361f2d26cbeb9c (diff)
parent48ede44f23ef9f67c28d3c807a877dca7ba4a234 (diff)
Merge pull request #843 from pgiraud/fix_iocommands_test
Fix tests
-rw-r--r--AUTHORS1
-rw-r--r--requirements-dev.txt2
-rw-r--r--tests/features/steps/iocommands.py2
3 files changed, 3 insertions, 2 deletions
diff --git a/AUTHORS b/AUTHORS
index b79d6a88..a2437d81 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -73,6 +73,7 @@ Contributors:
* Bojan Delić
* Chris Vaughn
* Frederic Aoustin
+ * Pierre Giraud
Creator:
diff --git a/requirements-dev.txt b/requirements-dev.txt
index b745e94f..5621db1f 100644
--- a/requirements-dev.txt
+++ b/requirements-dev.txt
@@ -6,6 +6,6 @@ pexpect==3.3
coverage==4.3.4
codecov>=1.5.1
docutils>=0.13.1
-
+autopep8==1.3.3
# we want the latest possible version of pep8radius
git+https://github.com/hayd/pep8radius.git
diff --git a/tests/features/steps/iocommands.py b/tests/features/steps/iocommands.py
index 79416bb2..afedc91c 100644
--- a/tests/features/steps/iocommands.py
+++ b/tests/features/steps/iocommands.py
@@ -18,7 +18,7 @@ def step_edit_file(context):
os.path.basename(context.editor_file_name)))
wrappers.expect_exact(
context, 'Entering Ex mode. Type "visual" to go to Normal mode.', timeout=2)
- wrappers.expect_exact(context, '\r\n:', timeout=2)
+ wrappers.expect_exact(context, ':', timeout=2)
@when('we type sql in the editor')