Fix server feature tests and refresh Go Test* counts.
Some checks failed
CI Docker Mining Proof / Linux agent hashrate proof (push) Has been cancelled

Unskip cloud-map export assertions, correct cloud venue class fixtures, and update tests/README.md to 960 server / 670 agent Test* totals.
This commit is contained in:
AetherForge
2026-06-07 11:11:30 -07:00
parent 0813ec8639
commit bcd25b53a6
5 changed files with 9 additions and 16 deletions

View File

@@ -8,8 +8,8 @@ func TestInferCloudVenueClassGPU(t *testing.T) {
}
}
func TestInferCloudVenueClassAirportSSID(t *testing.T) {
if InferCloudVenueClass(CloudVenueReport{SSID: "JFK-Free-WiFi"}) != CloudVenueAirport {
t.Fatal("expected airport class")
func TestInferCloudVenueClassInteractive(t *testing.T) {
if InferCloudVenueClass(CloudVenueReport{InstanceType: "t3.micro"}) != CloudVenueInteractive {
t.Fatal("expected interactive class")
}
}