Scouting: Ignore prescouted teams in match list

Some prescoutes teams that had the same match number and team number
are showing up as scouted already even though the match hasn't happened yet.
This patch ignores prescouted teams when checking if a match has been fully scouted.

Signed-off-by: Filip Kujawa <filip.j.kujawa@gmail.com>
Change-Id: I586f9d6d31251af18a958e05152a04e2cad5d7b2
diff --git a/scouting/db/db_test.go b/scouting/db/db_test.go
index bef396b..9d1184a 100644
--- a/scouting/db/db_test.go
+++ b/scouting/db/db_test.go
@@ -341,7 +341,7 @@
 
 	// Validate that requesting status for a single team gets us the
 	// expected data.
-	statsFor6344, err := fixture.db.ReturnStats2023ForTeam("6344", 3, 1, "qm")
+	statsFor6344, err := fixture.db.ReturnStats2023ForTeam("6344", 3, 1, "qm", false)
 	check(t, err, "Failed ReturnStats2023()")
 
 	if !reflect.DeepEqual([]Stats2023{stats[0]}, statsFor6344) {
@@ -350,7 +350,7 @@
 
 	// Validate that requesting team data for a non-existent match returns
 	// nothing.
-	statsForMissing, err := fixture.db.ReturnStats2023ForTeam("6344", 9, 1, "qm")
+	statsForMissing, err := fixture.db.ReturnStats2023ForTeam("6344", 9, 1, "qm", false)
 	check(t, err, "Failed ReturnStats2023()")
 
 	if !reflect.DeepEqual([]Stats2023{}, statsForMissing) {