diff --git a/magento2_test.go b/magento2_test.go index 27b0489..5f6509b 100644 --- a/magento2_test.go +++ b/magento2_test.go @@ -63,7 +63,7 @@ func TestGetMagentoVersionWithoutSystemPackages(t *testing.T) { } func TestGetMagentoBaseURLsFromConfigNilCtx(t *testing.T) { - baseURLs, err := m2store.BaseURLs(nil, fixtureBase + "magento2") + baseURLs, err := m2store.BaseURLs(nil, fixtureBase+"magento2") assert.Nil(t, err) assert.ElementsMatch(t, []string{"https://sansec.io/", "https://api.sansec.io/"}, baseURLs) } diff --git a/opencart4_config_test.go b/opencart4_config_test.go index dbcc5e5..b29a762 100644 --- a/opencart4_config_test.go +++ b/opencart4_config_test.go @@ -14,7 +14,7 @@ func TestOpenCartConfig(t *testing.T) { func TestOpenCartURL(t *testing.T) { oc4 := OpenCart4{} - urls, err := oc4.BaseURLs(nil, fixtureBase + "opencart4") + urls, err := oc4.BaseURLs(nil, fixtureBase+"opencart4") assert.NoError(t, err) assert.NotEmpty(t, urls) assert.Equal(t, "http://sansec.io/", urls[0])