diff --git a/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testAsyncImageNSAttributedString_uiTextView.1.png b/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testAsyncImageNSAttributedString_uiTextView.1.png index 9eef3fb..96862c5 100644 Binary files a/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testAsyncImageNSAttributedString_uiTextView.1.png and b/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testAsyncImageNSAttributedString_uiTextView.1.png differ diff --git a/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testShouldKeppNSAttributedString.1.png b/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testShouldKeppNSAttributedString.1.png index 0778413..608d5d0 100644 Binary files a/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testShouldKeppNSAttributedString.1.png and b/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testShouldKeppNSAttributedString.1.png differ diff --git a/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testUILabelSetHTMLString.1.png b/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testUILabelSetHTMLString.1.png index 914b98a..f6c5611 100644 Binary files a/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testUILabelSetHTMLString.1.png and b/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testUILabelSetHTMLString.1.png differ diff --git a/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testUILabelSetHTMLStringAsync.1.png b/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testUILabelSetHTMLStringAsync.1.png index 914b98a..f6c5611 100644 Binary files a/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testUILabelSetHTMLStringAsync.1.png and b/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testUILabelSetHTMLStringAsync.1.png differ diff --git a/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testUITextViewSetHTMLString.1.png b/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testUITextViewSetHTMLString.1.png index ab2069a..2f07d3a 100644 Binary files a/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testUITextViewSetHTMLString.1.png and b/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testUITextViewSetHTMLString.1.png differ diff --git a/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testUITextViewSetHTMLStringAsync.1.png b/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testUITextViewSetHTMLStringAsync.1.png index ab2069a..2f07d3a 100644 Binary files a/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testUITextViewSetHTMLStringAsync.1.png and b/Tests/ZMarkupParserSnapshotTests/__Snapshots__/ZMarkupParserSnapshotTests/testUITextViewSetHTMLStringAsync.1.png differ diff --git a/Tests/ZMarkupParserTests/Core/MarkupNSAttributedStringVisitorTests.swift b/Tests/ZMarkupParserTests/Core/MarkupNSAttributedStringVisitorTests.swift index ca6b14c..55c7c45 100644 --- a/Tests/ZMarkupParserTests/Core/MarkupNSAttributedStringVisitorTests.swift +++ b/Tests/ZMarkupParserTests/Core/MarkupNSAttributedStringVisitorTests.swift @@ -67,7 +67,7 @@ final class MarkupNSAttributedStringVisitorTests: XCTestCase { let rootMarkup = RootMarkup() let paragraphMarkup_1 = ParagraphMarkup() let paragraphMarkup_2 = ParagraphMarkup() - let listMarkup = ListMarkup(styleList: MarkupStyleList(type: .circle, format: "%@", startingItemNumber: 1)) + let listMarkup = ListMarkup(styleList: MarkupStyleList(type: .circle, format: "%@", indentSymobol: "\t", startingItemNumber: 1)) let listItemMarkup_1 = ListItemMarkup() listItemMarkup_1.appendChild(markup: RawStringMarkup(attributedString: NSAttributedString(string: "11"))) let listItemMarkup_2 = ListItemMarkup() @@ -89,7 +89,7 @@ final class MarkupNSAttributedStringVisitorTests: XCTestCase { let result = visitor.visit(rootMarkup).string - XCTAssertEqual(result, " ◦11\n ◦22\n22\n ◦333\n\n", "Breakline reduce failed!") + XCTAssertEqual(result, "◦11\n◦22\n22\n◦333\n\n", "Breakline reduce failed!") }