Removed faulty test

This commit is contained in:
Bence
2025-11-13 20:59:29 +01:00
committed by GitHub
parent d4ff0511f9
commit 718e9140aa

View File

@@ -422,17 +422,9 @@ mod tests {
assert_eq!(app.turn, Turn::Black); // Should now be Black's turn
}
#[test]
fn test_settings_initialization() {
let app = ChessApp::default();
assert_eq!(app.pending_settings.fullscreen, app.fullscreen);
assert_eq!(app.pending_settings.selected_resolution, app.selected_resolution);
assert_eq!(app.pending_settings.server_port, app.server_port);
}
#[test]
fn test_server_port_default() {
let app = ChessApp::default();
assert_eq!(app.server_port, "8080");
}
}
}