fix(infra): gradle_run detecta android-sdk — issue 0076 #2

Open
dataforge wants to merge 538 commits from auto/0076-gradle-sdk-detect into master
Showing only changes of commit 834e910bcf - Show all commits
+4 -4
View File
@@ -23,13 +23,13 @@ func TestPivot(t *testing.T) {
eu = r
}
}
if us["A"] != 10 {
if us["A"] != 10.0 {
t.Errorf("US.A: got %v, want 10", us["A"])
}
if us["B"] != 20 {
if us["B"] != 20.0 {
t.Errorf("US.B: got %v, want 20", us["B"])
}
if eu["A"] != 15 {
if eu["A"] != 15.0 {
t.Errorf("EU.A: got %v, want 15", eu["A"])
}
if eu["B"] != 0 {
@@ -85,7 +85,7 @@ func TestPivot(t *testing.T) {
if len(result) != 1 {
t.Fatalf("got %d rows, want 1", len(result))
}
if result[0]["A"] != 42 {
if result[0]["A"] != 42.0 {
t.Errorf("got %v, want 42", result[0]["A"])
}
})