KyrelJerome / Project-MARK

Autograding resources for csc148 summer 2021 session
1 stars 1 forks source link

Does this make sense in Scheduler? #14

Closed danielrazavi closed 3 years ago

danielrazavi commented 3 years ago

In Scheduler there is a line like the following:

if Common.FileUtility.doesFileExist(location_from + injections):

Shouldn't it be the following?:

if Common.FileUtility.doesFileExist(location_from):

Why does it work in our tests but it didn't work for Test2 marking?