We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 364cf6d commit 14d30d5Copy full SHA for 14d30d5
1 file changed
tests/core/test_models.py
@@ -416,7 +416,7 @@ def test_as_list_str(self, mock_wrap_content):
416
# Assertions for context list
417
assert len(context_list) == 3 # PACKAGES, file1.py, file2.py
418
assert 'wrapped(import numpy as np, PACKAGES)' in context_list
419
- assert 'wrapped(class FullClass:\n ..., file1.py)' in context_list
+ assert 'wrapped(\nclass FullClass:\n ..., file1.py)' in context_list
420
# Check that the partial class was constructed correctly
421
assert 'wrapped(class PartialClass(Base):\n\n\n ...\n\n\ndef partial_method(self):\n pass, file2.py)' in context_list
422
0 commit comments