Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim authored and SteffenDE committed May 30, 2024
1 parent d9323ea commit 684e26c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/phoenix_html/form_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@ defmodule Phoenix.HTML.FormTest do
{:safe, ["2017-09-21", ?T, "20:21"]}

assert normalize_value("datetime-local", "2017-09-21 20:21:53") ==
{:safe, "2017-09-21 20:21:53"}
"2017-09-21 20:21:53"

assert normalize_value("datetime-local", "other") == {:safe, "other"}
assert normalize_value("datetime-local", "other") == "other"
end

test "for textarea" do
Expand Down

0 comments on commit 684e26c

Please sign in to comment.