@@ -20,7 +20,7 @@ def test_commit_recursive(tmp_dir, dvc):
2020
2121def test_commit_force (tmp_dir , dvc ):
2222 tmp_dir .gen ({"dir" : {"file" : "text1" , "file2" : "text2" }})
23- ( stage ,) = dvc .add ("dir" , no_commit = True )
23+ stage , = dvc .add ("dir" , no_commit = True )
2424
2525 with dvc .state :
2626 assert stage .outs [0 ].changed_cache ()
@@ -42,7 +42,7 @@ def test_commit_force(tmp_dir, dvc):
4242
4343def test_commit_with_deps (tmp_dir , dvc , run_copy ):
4444 tmp_dir .gen ("foo" , "foo" )
45- ( foo_stage ,) = dvc .add ("foo" , no_commit = True )
45+ foo_stage , = dvc .add ("foo" , no_commit = True )
4646 assert foo_stage is not None
4747 assert len (foo_stage .outs ) == 1
4848
@@ -62,7 +62,7 @@ def test_commit_with_deps(tmp_dir, dvc, run_copy):
6262
6363def test_commit_changed_md5 (tmp_dir , dvc ):
6464 tmp_dir .gen ({"file" : "file content" })
65- ( stage ,) = dvc .add ("file" , no_commit = True )
65+ stage , = dvc .add ("file" , no_commit = True )
6666
6767 stage_file_content = load_stage_file (stage .path )
6868 stage_file_content ["md5" ] = "1111111111"
0 commit comments