From 2556da148357a2f8919d072643294426034b8fec Mon Sep 17 00:00:00 2001 From: Ben Wolsieffer Date: Fri, 22 Mar 2024 22:54:27 -0400 Subject: [PATCH] Fix trailing whitespace --- tests/test_nix.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"')