|
@@ -42,6 +42,7 @@ class TagStorageTest(SnubaTestCase):
|
|
|
data = json.dumps([{
|
|
|
'event_id': six.text_type(r) * 32,
|
|
|
'primary_hash': hash1,
|
|
|
+ 'group_id': int(hash1[:16], 16),
|
|
|
'project_id': self.proj1.id,
|
|
|
'message': 'message 1',
|
|
|
'platform': 'python',
|
|
@@ -63,6 +64,7 @@ class TagStorageTest(SnubaTestCase):
|
|
|
} for r in [1, 2]] + [{
|
|
|
'event_id': '3' * 32,
|
|
|
'primary_hash': hash2,
|
|
|
+ 'group_id': int(hash2[:16], 16),
|
|
|
'project_id': self.proj1.id,
|
|
|
'message': 'message 2',
|
|
|
'platform': 'python',
|