Skip to content

Commit

Permalink
Correct dependency tree of grader
Browse files Browse the repository at this point in the history
  • Loading branch information
CAS-ual-TY committed Oct 10, 2022
1 parent 7fe989b commit 856f7cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions grader/self.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,10 +411,10 @@ def check_treiber_stack() -> List[Check]:
check_threads, parent = assignment_fork_wait_exit)
assignment_threadsafe_malloc = Assignment('threadsafe-malloc', 'Systems', 'threadsafe-malloc',
REPO_BLOB_BASE_URI + 'grader/systems-assignments.md#assignment-threadsafe-malloc',
check_threadsafe_malloc)
check_threadsafe_malloc, parent = assignment_threads)
assignment_treiber_stack = Assignment('treiber-stack', 'Systems', 'treiber-stack',
REPO_BLOB_BASE_URI + 'grader/systems-assignments.md#assignment-treiber-stack',
check_treiber_stack)
check_treiber_stack, parent = assignment_threadsafe_malloc)

assignments: List[Assignment] = [
assignment_print_your_name,
Expand Down

0 comments on commit 856f7cb

Please sign in to comment.