diff --git a/tests/test_public_api.py b/tests/test_public_api.py index a23f091..f0a9d71 100644 --- a/tests/test_public_api.py +++ b/tests/test_public_api.py @@ -41,7 +41,7 @@ def test_get_pygments_stylesheet(self) -> None: except ImportError: raise unittest.SkipTest("Pygments not available") stylesheet = get_pygments_stylesheet(".selector") - self.assertIn(".selector .nf { color: #0000FF", stylesheet) + self.assertIn(".selector .nf { color: #00F", stylesheet) stylesheet = get_pygments_stylesheet(".selector", style="colorful") - self.assertIn(".selector .nf { color: #0066BB", stylesheet) + self.assertIn(".selector .nf { color: #06B", stylesheet) self.assertFalse(get_pygments_stylesheet(".selector", style=""))