Skip to content

Commit e741b00

Browse files
committed
Fix broken test
1 parent ff78616 commit e741b00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nerd_herder/talk_proposals/tests/test_talk_proposal_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
@pytest.mark.django_db
3131
def test_create_talk_proposal(mocker):
32-
send_message = mocker.patch("nerd_herder.talk_proposals.views.send_message")
32+
send_message = mocker.patch("nerd_herder.talk_proposals.utils.send_message")
3333
client = Client()
3434
payload = json.dumps(TALK_PROPOSAL)
3535
req = client.post(URL, payload, content_type="application/json")

0 commit comments

Comments
 (0)