Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aljazerzen committed Dec 20, 2024
1 parent 458c3dc commit e9f2253
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions tests/portable_smoke.rs
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,14 @@ fn install() {
.context("query-1-3", "query `inst1` after 2nd upgrade")
.success();

Command::new("edgedb")
.arg("--instance=second")
.arg("extension")
.arg("list")
.assert()
.context("extension-list", "basic list of the installed extensions")
.success();

Command::new("edgedb")
.arg("instance")
.arg("destroy")
Expand Down Expand Up @@ -306,13 +314,4 @@ fn install() {
.assert()
.context("query-1a", "late query of `inst1`")
.success();

Command::new("edgedb")
.arg("--instance")
.arg("inst1")
.arg("extension")
.arg("list")
.assert()
.context("extension-list", "basic list of the installed extensions")
.success();
}

0 comments on commit e9f2253

Please sign in to comment.