Skip to content

Commit f58f6ed

Browse files
authored
fix: TypeError in RenvLockBuilder (#4061)
Co-authored-by: Joydeep Tripathy <[email protected]>
1 parent 15638f1 commit f58f6ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fuzz/fuzz_renv_lock.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def TestParseData(data, cve_db, logger, tmpdir):
102102
"""
103103
file_path = os.path.join(tmpdir, "renv.lock")
104104
try:
105-
RenvLockBuilder(data)
105+
RenvLockBuilder(data, file_path)
106106

107107
r_parser = RParser(cve_db, logger)
108108
r_parser.run_checker(file_path)

0 commit comments

Comments
 (0)