Skip to content

Commit 09730c4

Browse files
committed
testsuite: remove unused parameter
Problem: In t0005-kvs.py the helper function set_and_check_context() has a 'msg' parameter that is never used in the function. Remove the unused parameter.
1 parent 7a64e8c commit 09730c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/python/t0005-kvs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def test_kvs_dir_open(self):
3131
with flux.kvs.get_dir(self.f) as d:
3232
self.assertIsNotNone(d)
3333

34-
def set_and_check_context(self, key, value, msg=""):
34+
def set_and_check_context(self, key, value):
3535
kd = flux.kvs.KVSDir(self.f)
3636
kd[key] = value
3737
kd.commit()

0 commit comments

Comments
 (0)