We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This test has missing comma on line 572
rapidpro/temba/utils/tests.py
Lines 570 to 575 in 44f12b8
it's hard to spot so I will break it down a bit. Line 572:
'"()<>[]:,;@\"!#$%&'-/=?^_`{}| ~.a"@example.org' '" "@example.org',
should have a comma after ple.org' ie
ple.org'
'"()<>[]:,;@\"!#$%&'-/=?^_`{}| ~.a"@example.org', '" "@example.org',
The absence of this comma means the two strings are implicitly concatenated together.
This means the email test is not covering those two email addresses and instead uses '"()<>[]:,;@\"!#$%&'-/=?^_`{}| ~.a"@example.org" "@example.org',
I can make a PR to fix this for you?
The text was updated successfully, but these errors were encountered:
Good spot - I just fixed this now
Sorry, something went wrong.
No branches or pull requests
This test has missing comma on line 572
rapidpro/temba/utils/tests.py
Lines 570 to 575 in 44f12b8
it's hard to spot so I will break it down a bit. Line 572:
'"()<>[]:,;@\"!#$%&'-/=?^_`{}| ~.a"@example.org' '" "@example.org',
should have a comma after
ple.org'ie'"()<>[]:,;@\"!#$%&'-/=?^_`{}| ~.a"@example.org', '" "@example.org',
The absence of this comma means the two strings are implicitly concatenated together.
This means the email test is not covering those two email addresses and instead uses '"()<>[]:,;@\"!#$%&'-/=?^_`{}| ~.a"@example.org" "@example.org',
I can make a PR to fix this for you?
The text was updated successfully, but these errors were encountered: