Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

test testing PR #390

Closed
wants to merge 11 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/project/endpoints/projects/endpoint_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

def parse_project_params():
"""
Return a dict of every non None value in the param
Return a dictionary of every non None value in the param
"""
args = parser.parse_args()

Expand Down
2 changes: 1 addition & 1 deletion backend/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def projects(session):
deadlines=[("Deadline 1",datetime(2024,3,15,13,0,0))],
course_id=course_id_ad3,
visible_for_students=True,
archived=False,
archived=True,
regex_expressions=["solution"]
),
Project(
Expand Down
Loading