From 3724637599f5b1ec11a8ad26dca73e8008d602d2 Mon Sep 17 00:00:00 2001 From: George Leslie-Waksman Date: Sun, 28 May 2017 00:34:20 -0700 Subject: [PATCH] fix tests --- tests/test_ssm.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/test_ssm.py b/tests/test_ssm.py index f597e0e..0cf7310 100644 --- a/tests/test_ssm.py +++ b/tests/test_ssm.py @@ -45,7 +45,6 @@ def get_namespace(**kwargs): defaults = { 'data_path': ssm.DEFAULT_DATA_PATH, 'include_online_only': False, - 'profile_stats': False, 'dialect': {}, } defaults.update(kwargs) @@ -88,12 +87,11 @@ def get_namespace(**kwargs): left='file1', right='file2') ), ( - '--data-path /foo --include-online-only --profile-stats ' + '--data-path /foo --include-online-only ' 'create testfilename', get_namespace( data_path='/foo', include_online_only=True, - profile_stats=True, action='create', func=ssm.create_cmd, collection='testfilename') @@ -103,7 +101,6 @@ def get_namespace(**kwargs): get_namespace( data_path=ssm.DEFAULT_DATA_PATH, include_online_only=False, - profile_stats=False, dialect={'foo': 'bar', 'baz': 'quux'}, action='create', func=ssm.create_cmd,