Commit 9cb3396d authored by Peter Aisher's avatar Peter Aisher Committed by Nejc Habjan
Browse files

test(files): omit optional `ref` parameter in test case

parent 00640ac1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -46,7 +46,7 @@ def test_repository_files(project):
    blame = project.files.blame(file_path="README.rst", ref="main")
    assert blame

    raw_file = project.files.raw(file_path="README.rst", ref="main")
    raw_file = project.files.raw(file_path="README.rst")
    assert os.fsdecode(raw_file) == "Initial content"