Skip to content

Commit 9c7897e

Browse files
committed
Fix trailing whitespace
1 parent f3b2ace commit 9c7897e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/test_nix.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ def test_public_domain(self):
3030
l = NixLicense("Public Domain")
3131
self.assertEqual(l.nix_code, 'publicDomain')
3232

33-
def test_escape_quote(self):
33+
def test_escape_quote(self):
3434
l = NixLicense(r'license with "quotes" and \backslash" ');
3535
self.assertEqual(l.nix_code, r'"license-with-\"quotes\"-and-\\backslash"')
36-
37-
def test_escape_quote(self):
36+
37+
def test_escape_quote(self):
3838
l = NixLicense('some license with the "${" sequence');
3939
self.assertEqual(l.nix_code, r'"some-license-with-the-\"\${\"-sequence"')

0 commit comments

Comments
 (0)