fix deprecated lint names
diff --git a/bindgen-tests/tests/expectations/Cargo.toml b/bindgen-tests/tests/expectations/Cargo.toml
index 975fd16..e1b74c7 100644
--- a/bindgen-tests/tests/expectations/Cargo.toml
+++ b/bindgen-tests/tests/expectations/Cargo.toml
@@ -22,25 +22,25 @@
 ### FIXME: these might need to be fixed,
 ###   esp the calling convention, because it is a hard error now
 # deprecated = "allow"
-# invalid-value = "allow"
+# invalid_value = "allow"
 # unsupported_calling_conventions = "allow"
 #
 # Different from the workspace
 dead_code = "allow"
-non-snake-case = "allow"
+non_snake_case = "allow"
 non_camel_case_types = "allow"
 non_upper_case_globals = "allow"
-unexpected-cfgs = "allow"
+unexpected_cfgs = "allow"
 unused_qualifications = "allow"
 
 [lints.clippy]
-disallowed-names = "allow"
-manual-c-str-literals = "allow"
-missing-safety-doc = "allow"
-op-ref = "allow"
-ptr-offset-with-cast = "allow"
+disallowed_names = "allow"
+manual_c_str_literals = "allow"
+missing_safety_doc = "allow"
+op_ref = "allow"
+ptr_offset_with_cast = "allow"
 semicolon_if_nothing_returned = "allow"
-too-many-arguments = "allow"
-transmute-int-to-bool = "allow"
-unnecessary-cast = "allow"
-useless-transmute  = "allow"
+too_many_arguments = "allow"
+transmute_int_to_bool = "allow"
+unnecessary_cast = "allow"
+useless_transmute  = "allow"