Преглед изворни кода

fix(tests): adjust default bundle target for updater integration test (#7201)

Lucas Fernandes Nogueira пре 2 година
родитељ
комит
aa94f049c1
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      core/tests/app-updater/tests/update.rs

+ 1 - 1
core/tests/app-updater/tests/update.rs

@@ -121,7 +121,7 @@ impl Default for BundleTarget {
     #[cfg(any(target_os = "macos", target_os = "ios"))]
     return Self::App;
     #[cfg(target_os = "linux")]
-    return Self::App;
+    return Self::AppImage;
     #[cfg(windows)]
     return Self::Nsis;
   }