diff --git a/tests/test_nix.py b/tests/test_nix.py index 3b4d8c33..c4dabea0 100644 --- a/tests/test_nix.py +++ b/tests/test_nix.py @@ -30,10 +30,10 @@ def test_public_domain(self): l = NixLicense("Public Domain") self.assertEqual(l.nix_code, 'publicDomain') - def test_escape_quote(self): + def test_escape_quote(self): l = NixLicense(r'license with "quotes" and \backslash" '); self.assertEqual(l.nix_code, r'"license-with-\"quotes\"-and-\\backslash"') - - def test_escape_quote(self): + + def test_escape_quote(self): l = NixLicense('some license with the "${" sequence'); self.assertEqual(l.nix_code, r'"some-license-with-the-\"\${\"-sequence"')