@@ -21,8 +21,10 @@ func TestUpdatePackage(t *testing.T) {
2121 t .Run ("Stable To Current" , func (t * testing.T ) {
2222 t .Cleanup (func () { os .RemoveAll ("build" ) })
2323
24- tagAppCli := fetchDebPackageLatest (t , "build/stable" , "arduino-app-cli" )
25- fetchDebPackageLatest (t , "build/stable" , "arduino-router" )
24+ tagAppCli := fetchDebPackageLatest (t , "build/stable" , "arduino/arduino-app-cli" )
25+ fetchDebPackageLatest (t , "build/stable" , "arduino/arduino-router" )
26+ fetchDebPackageLatest (t , "build/stable" , "bcmi-labs/arduino-deb-packages" )
27+
2628 majorTag := genMajorTag (t , tagAppCli )
2729
2830 fmt .Printf ("Updating from stable version %s to unstable version %s \n " , tagAppCli , majorTag )
@@ -71,8 +73,10 @@ func TestUpdatePackage(t *testing.T) {
7173 t .Run ("CurrentToStable" , func (t * testing.T ) {
7274 t .Cleanup (func () { os .RemoveAll ("build" ) })
7375
74- tagAppCli := fetchDebPackageLatest (t , "build" , "arduino-app-cli" )
75- fetchDebPackageLatest (t , "build/stable" , "arduino-router" )
76+ tagAppCli := fetchDebPackageLatest (t , "build" , "arduino/arduino-app-cli" )
77+ fetchDebPackageLatest (t , "build/stable" , "arduino/arduino-router" )
78+ fetchDebPackageLatest (t , "build/stable" , "bcmi-labs/arduino-deb-packages" )
79+
7680 minorTag := genMinorTag (t , tagAppCli )
7781
7882 fmt .Printf ("Updating from unstable version %s to stable version %s \n " , minorTag , tagAppCli )
@@ -83,7 +87,7 @@ func TestUpdatePackage(t *testing.T) {
8387 const dockerImageName = "test-apt-update-unstable-image"
8488
8589 buildDockerImage (t , dockerFile , dockerImageName , arch )
86- //TODO: t cleanup remove docker image
90+ // // TODO: t cleanup remove docker image
8791
8892 t .Run ("CLI Command" , func (t * testing.T ) {
8993 const containerName = "apt-test-update-unstable"
0 commit comments