Skip to content

Commit

Permalink
Fix the test_keymaps test
Browse files Browse the repository at this point in the history
  • Loading branch information
imobachgs committed Mar 15, 2024
1 parent a3c2269 commit e663b98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/agama-server/tests/l10n.rs
Expand Up @@ -49,7 +49,7 @@ async fn test_keymaps() {
let response = service.oneshot(request).await.unwrap();
assert_eq!(response.status(), StatusCode::OK);
let body = body_to_string(response.into_body()).await;
assert!(body.contains(r#""layout":"us""#));
assert!(body.contains(r#""id":"us""#));
}

#[test]
Expand Down

0 comments on commit e663b98

Please sign in to comment.