Store trial note in study_system_attrs

This commit is contained in:
c-bata
2023-01-01 23:09:51 +09:00
parent 4754310ddb
commit 083a9aff0e
8 changed files with 103 additions and 102 deletions
+2 -2
View File
@@ -15,7 +15,7 @@ class NoteTestCase(TestCase):
("012345", 2),
]:
with self.subTest(f"with_{dummy_body_str}_{attr_len}"):
attrs = note.split_body(dummy_body_str)
attrs = note.split_body(dummy_body_str, None)
assert len(attrs) == attr_len
actual = note.concat_body(attrs)
actual = note.concat_body(attrs, None)
assert dummy_body_str == actual