Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Oct 9, 2023
1 parent d6c9d53 commit 06e9840
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/phoenix_html/form_test.exs
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 06e9840

Please sign in to comment.