Skip to content

Commit 5ad4809

Browse files
committed
update expected statuses in test
1 parent 0277173 commit 5ad4809

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

phd-tests/tests/src/server_state_machine.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ async fn instance_stop_causes_destroy_test(ctx: &Framework) {
3737

3838
assert!(matches!(
3939
vm.run().await.unwrap_err().status().unwrap(),
40-
http::status::StatusCode::NOT_FOUND
40+
http::status::StatusCode::FAILED_DEPENDENCY
4141
));
4242
assert!(matches!(
4343
vm.stop().await.unwrap_err().status().unwrap(),
44-
http::status::StatusCode::NOT_FOUND
44+
http::status::StatusCode::FAILED_DEPENDENCY
4545
));
4646
assert!(matches!(
4747
vm.reset().await.unwrap_err().status().unwrap(),
48-
http::status::StatusCode::NOT_FOUND
48+
http::status::StatusCode::FAILED_DEPENDENCY
4949
));
5050
}
5151

0 commit comments

Comments
 (0)