Skip to content

Commit

Permalink
fix front-end test, isort
Browse files Browse the repository at this point in the history
  • Loading branch information
eastandwestwind committed Dec 20, 2022
1 parent 5d06292 commit 1c92ac1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions clients/privacy-center/__tests__/RequestModal.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ describe("RequestModal", () => {
target: { value: "testing@ethyca.com" },
});

fireEvent.change(screen.getByPlaceholderText("+1 000 000 0000"), {
fireEvent.change(screen.getByPlaceholderText("000 000 0000"), {
target: { value: "0000000000" },
});
});
Expand Down Expand Up @@ -151,7 +151,7 @@ describe("RequestModal", () => {
target: { value: "testing@ethyca.com" },
});

fireEvent.change(screen.getByPlaceholderText("+1 000 000 0000"), {
fireEvent.change(screen.getByPlaceholderText("000 000 0000"), {
target: { value: "0000000000" },
});
});
Expand Down Expand Up @@ -189,7 +189,7 @@ describe("RequestModal", () => {
target: { value: "testing@ethyca.com" },
});

fireEvent.change(screen.getByPlaceholderText("+1 000 000 0000"), {
fireEvent.change(screen.getByPlaceholderText("000 000 0000"), {
target: { value: "0000000000" },
});
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
HTTP_400_BAD_REQUEST,
HTTP_403_FORBIDDEN,
HTTP_404_NOT_FOUND,
HTTP_500_INTERNAL_SERVER_ERROR,
HTTP_422_UNPROCESSABLE_ENTITY,
HTTP_500_INTERNAL_SERVER_ERROR,
)

from fides.api.ops.api.deps import get_db
Expand Down

0 comments on commit 1c92ac1

Please sign in to comment.