From a7463d8d045664e546622fdacb099b3e8f417baf Mon Sep 17 00:00:00 2001 From: Ahmed Muawia Khan Date: Thu, 13 Sep 2018 16:21:49 +0200 Subject: [PATCH] Fix flake8 again :) --- tests/backend/localmongodb/test_queries.py | 2 +- tests/commands/test_commands.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/backend/localmongodb/test_queries.py b/tests/backend/localmongodb/test_queries.py index a02836fa..6a7ae2c4 100644 --- a/tests/backend/localmongodb/test_queries.py +++ b/tests/backend/localmongodb/test_queries.py @@ -56,7 +56,7 @@ def test_write_assets(): # check that 3 assets were written to the database cursor = conn.db.assets.find({}, projection={'_id': False})\ - .sort('id', pymongo.ASCENDING) + .sort('id', pymongo.ASCENDING) assert cursor.collection.count_documents({}) == 3 assert list(cursor) == assets[:-1] diff --git a/tests/commands/test_commands.py b/tests/commands/test_commands.py index 6bd187c3..38e251d8 100644 --- a/tests/commands/test_commands.py +++ b/tests/commands/test_commands.py @@ -11,7 +11,6 @@ from argparse import Namespace import pytest from bigchaindb import ValidatorElection -from tests.conftest import node_keys def test_make_sure_we_dont_remove_any_command():