Skip to content

Commit a8f4e21

Browse files
committed
4
Signed-off-by: hkkim <[email protected]>
1 parent 30f8225 commit a8f4e21

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_tox.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ def test_run():
1919

2020
assert scan_success is True, "Test Run: Scan command failed"
2121
assert scan_exclude_success is True, "Test Run: Exclude command failed"
22-
2322
assert len(scan_files) > 0, "Test Run: No scan files created in test_scan directory"
2423
assert len(scan2_files) > 0, "Test Run: No scan files created in test_scan2 directory"
2524

@@ -43,8 +42,9 @@ def test_scan_command():
4342

4443

4544
def test_exclude_command():
46-
success, _ = run_command("fosslight_source -p tests -e test_files/test cli_test.py "
47-
"-j -m -o test_scan2/scan_exclude_result.csv")
45+
success, _ = run_command(
46+
"fosslight_source -p tests -e test_files/test cli_test.py -j -m -o test_scan2/scan_exclude_result.csv"
47+
)
4848
assert success is True, "Test release: Exclude scan failded"
4949

5050
assert os.path.exists("test_scan2/scan_exclude_result.csv"), "Test Release: scan_exclude_result.csv file not generated"

0 commit comments

Comments
 (0)