Skip to content

Commit

Permalink
Merge a756ba0 into 8f388d5
Browse files Browse the repository at this point in the history
  • Loading branch information
tofpie authored Dec 15, 2020
2 parents 8f388d5 + a756ba0 commit 66fc4cd
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions boa/src/builtins/date/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1276,7 +1276,13 @@ fn date_proto_to_string() -> Result<(), Box<dyn std::error::Error>> {

assert_eq!(
Some(Value::string(
Local::now()
Local
.from_local_datetime(&NaiveDateTime::new(
NaiveDate::from_ymd(2020, 6, 8),
NaiveTime::from_hms_milli(9, 16, 15, 779)
))
.earliest()
.unwrap()
.format("Wed Jul 08 2020 09:16:15 GMT%:z")
.to_string()
)),
Expand All @@ -1298,7 +1304,15 @@ fn date_proto_to_time_string() -> Result<(), Box<dyn std::error::Error>> {

assert_eq!(
Some(Value::string(
Local::now().format("09:16:15 GMT%:z").to_string()
Local
.from_local_datetime(&NaiveDateTime::new(
NaiveDate::from_ymd(2020, 6, 8),
NaiveTime::from_hms_milli(9, 16, 15, 779)
))
.earliest()
.unwrap()
.format("09:16:15 GMT%:z")
.to_string()
)),
actual
);
Expand Down

0 comments on commit 66fc4cd

Please sign in to comment.