Skip to content

Commit aade0ec

Browse files
fix unit test
1 parent 8d78817 commit aade0ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/nwsc_proxy/test/test_ncp_web_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def test_get_new_profiles(wrapper: AppWrapper, mock_request: Mock, mock_profile_
153153

154154
get_call_args = mock_profile_store.return_value.get_all.mock_calls
155155
# called with is_new set to True
156-
assert get_call_args[0][1:] == (("NBM",), ({"is_new": True},))
156+
assert get_call_args[0][1:] == (("NBM",), {"is_new": True})
157157

158158
# expect that we told ProfileStore to label this profile as not new
159159
mark_existing_call_args = mock_profile_store.return_value.mark_as_existing.mock_calls

0 commit comments

Comments
 (0)