Skip to content

Commit 82926a6

Browse files
committed
linter and formatting fixes
1 parent 41f4814 commit 82926a6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/integration/api_packages_arch_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@ func TestPackageArch(t *testing.T) {
6666
BuildArchPackage(t, "dash", "2-1", "any"),
6767
}
6868

69-
database_x86_64 = BuildPacmanDb(t,
69+
PacmanDBx86 = BuildPacmanDb(t,
7070
secondDatabaseBatch[0].Pkg,
7171
firstDatabaseBatch[2].Pkg,
7272
secondDatabaseBatch[2].Pkg,
7373
)
7474

75-
database_i686 = BuildPacmanDb(t,
75+
PacmanDBi686 = BuildPacmanDb(t,
7676
firstDatabaseBatch[0].Pkg,
7777
secondDatabaseBatch[1].Pkg,
7878
secondDatabaseBatch[2].Pkg,
@@ -254,7 +254,7 @@ func TestPackageArch(t *testing.T) {
254254
req := NewRequest(t, "GET", url)
255255
resp := MakeRequest(t, req, http.StatusOK)
256256

257-
CompareTarGzEntries(t, database_x86_64, resp.Body.Bytes())
257+
CompareTarGzEntries(t, PacmanDBx86, resp.Body.Bytes())
258258
})
259259

260260
t.Run("i686", func(t *testing.T) {
@@ -266,7 +266,7 @@ func TestPackageArch(t *testing.T) {
266266
req := NewRequest(t, "GET", url)
267267
resp := MakeRequest(t, req, http.StatusOK)
268268

269-
CompareTarGzEntries(t, database_i686, resp.Body.Bytes())
269+
CompareTarGzEntries(t, PacmanDBi686, resp.Body.Bytes())
270270
})
271271
})
272272
}

0 commit comments

Comments
 (0)