Fix jest tests for method='post' MR

This commit is contained in:
Sean King 2020-08-30 20:34:24 -06:00
parent e5de8427f1
commit 7acf9fb702
No known key found for this signature in database
GPG key ID: 510C52BACD6E7257
3 changed files with 6 additions and 3 deletions

View file

@ -2,7 +2,8 @@
exports[`<LoginForm /> renders correctly 1`] = ` exports[`<LoginForm /> renders correctly 1`] = `
<form <form
className="simple_form new_user" method='post' className="simple_form new_user"
method="post"
> >
<fieldset> <fieldset>
<div <div

View file

@ -2,7 +2,8 @@
exports[`<LoginPage /> renders correctly on load 1`] = ` exports[`<LoginPage /> renders correctly on load 1`] = `
<form <form
className="simple_form new_user" method="post" className="simple_form new_user"
method="post"
onSubmit={[Function]} onSubmit={[Function]}
> >
<fieldset <fieldset

View file

@ -77,7 +77,8 @@ exports[`<SelectDropdown /> renders correctly 1`] = `
exports[`<SimpleForm /> renders correctly 1`] = ` exports[`<SimpleForm /> renders correctly 1`] = `
<form <form
acceptCharset="UTF-8" acceptCharset="UTF-8"
className="simple_form" method="post" className="simple_form"
method="post"
onSubmit={[Function]} onSubmit={[Function]}
/> />
`; `;