mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Fix failing test in winit prefs (#30186)
This commit is contained in:
parent
2223aad9d7
commit
41ae460270
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ fn test_parse_pref_from_command_line() {
|
||||||
prefs::pref_map().get("dom.bluetooth.enabled"),
|
prefs::pref_map().get("dom.bluetooth.enabled"),
|
||||||
PrefValue::Bool(false)
|
PrefValue::Bool(false)
|
||||||
);
|
);
|
||||||
assert!(pref!(dom.bluetooth.enabled));
|
assert_eq!(pref!(dom.bluetooth.enabled), false);
|
||||||
|
|
||||||
// Test with numbers
|
// Test with numbers
|
||||||
test_parse_pref("layout.threads=42");
|
test_parse_pref("layout.threads=42");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue