Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
willkg committed Nov 17, 2021
1 parent d67843c commit 7feeeac
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions socorro/unittest/external/es/test_super_search_fields.py
Expand Up @@ -129,12 +129,12 @@ def test_get_mapping(self):
}

# Test nested objects.
assert (
processed_crash["json_dump"]["properties"]["system_info"]["properties"]["cpu_count"] == {
"type": "short",
"doc_values": True,
}
)
assert processed_crash["json_dump"]["properties"]["system_info"]["properties"][
"cpu_count"
] == {
"type": "short",
"doc_values": True,
}


class TestIntegrationSuperSearchFields(ElasticsearchTestCase):
Expand Down
2 changes: 1 addition & 1 deletion socorro/unittest/external/es/test_supersearch.py
Expand Up @@ -95,7 +95,7 @@ def test_get(self):
"system_info": {
"cpu_count": 4,
},
}
},
}
)
self.es_context.refresh()
Expand Down

0 comments on commit 7feeeac

Please sign in to comment.