From b40bae5728920992c138212689db2da52b53103a Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Thu, 28 Apr 2016 00:34:38 -0500 Subject: [PATCH] Typo fix. --- lib/kgrader/submission.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/kgrader/submission.rb b/lib/kgrader/submission.rb index fd37264..1951151 100644 --- a/lib/kgrader/submission.rb +++ b/lib/kgrader/submission.rb @@ -194,7 +194,7 @@ module KGrader end def run_test(test) - return if test[:score] == text[:max] # Can't superscore the max score + return if test[:score] == test[:max] # Can't superscore the max score test[:depends].each do |depname| dep = @tests.find { |t| t[:name] == depname }