This commit is contained in:
Antoine Stevan 2024-08-02 08:42:25 -05:00 committed by GitHub
commit 4e2eacc5b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -274,7 +274,7 @@ fn from_nuon_datetime() {
"#
));
assert_eq!(actual.out, "date");
assert_eq!(actual.out, "datetime");
}
#[test]

View File

@ -135,7 +135,7 @@ impl Type {
Type::Closure => String::from("closure"),
Type::Bool => String::from("bool"),
Type::CellPath => String::from("cell-path"),
Type::Date => String::from("date"),
Type::Date => String::from("datetime"),
Type::Duration => String::from("duration"),
Type::Filesize => String::from("filesize"),
Type::Float => String::from("float"),
@ -165,7 +165,7 @@ impl Display for Type {
Type::Closure => write!(f, "closure"),
Type::Bool => write!(f, "bool"),
Type::CellPath => write!(f, "cell-path"),
Type::Date => write!(f, "date"),
Type::Date => write!(f, "datetime"),
Type::Duration => write!(f, "duration"),
Type::Filesize => write!(f, "filesize"),
Type::Float => write!(f, "float"),