Skip to content

Commit f86523c

Browse files
authored
Fix comment grammar in entity_name test (#2394)
Corrected the comment to use proper grammar.
1 parent 9f2a840 commit f86523c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/unit/transport/test_azureservicebus.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ def test_custom_entity_name():
362362
assert channel.entity_name('test-celery') == 'test-celery'
363363
assert channel.entity_name('test.celery') == 'test-celery'
364364

365-
# all other punctuations replaced by underscores
365+
# all other punctuation's replaced by underscores
366366
assert channel.entity_name('test_celery') == 'test_celery'
367367
assert channel.entity_name('test:celery') == 'test_celery'
368368
assert channel.entity_name('test+celery') == 'test_celery'

0 commit comments

Comments
 (0)