From: Gary Lockyer Date: Mon, 16 Mar 2020 21:12:49 +0000 (+1300) Subject: ldb build: Remove some PEP8 warnings from wscript X-Git-Tag: ldb-2.2.0~1302 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=83ff052777245d785046b09fbe73dd4deb2cd099;p=thirdparty%2Fsamba.git ldb build: Remove some PEP8 warnings from wscript Fix indentation of list members and fix lines > 79 characters to remove PEP8 warnings. Signed-off-by: Gary Lockyer Reviewed-by: Andrew Bartlett --- diff --git a/lib/ldb/wscript b/lib/ldb/wscript index 7e3c5ad45cb..6dbd88aa304 100644 --- a/lib/ldb/wscript +++ b/lib/ldb/wscript @@ -630,13 +630,13 @@ def test(ctx): if env.HAVE_LMDB: test_exes += ['ldb_mdb_mod_op_test', - 'ldb_lmdb_test', - # we don't want to run ldb_lmdb_size_test (which proves we can - # fit > 4G of data into the DB), it would fill up the disk on - # many of our test instances - 'ldb_mdb_kv_ops_test', - 'ldb_key_value_sub_txn_mdb_test', - 'ldb_lmdb_free_list_test'] + 'ldb_lmdb_test', + # we don't want to run ldb_lmdb_size_test (which proves + # we can fit > 4G of data into the DB), it would fill up + # the disk on many of our test instances + 'ldb_mdb_kv_ops_test', + 'ldb_key_value_sub_txn_mdb_test', + 'ldb_lmdb_free_list_test'] else: test_exes += ['ldb_no_lmdb_test']