Skip to content

Commit 7f65ff6

Browse files
committed
Clean up warnings and tests
1 parent 5caf8c7 commit 7f65ff6

3 files changed

Lines changed: 8 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [0.7.1] - 2021-06-28
4+
5+
### Changed
6+
7+
- Cleaned up warnings & tests
8+
39
## [0.7.0] - 2021-06-22
410

511
### Changed

Package.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ let package = Package(
2929
dependencies: [
3030
.product(name: "Logging", package: "swift-log"),
3131
"ObjectiveCTextStorageWrapper",
32-
]
32+
],
33+
exclude: ["TextMarkupKit.docc"]
3334
),
3435
.target(name: "ObjectiveCTextStorageWrapper", dependencies: []),
3536
.testTarget(

Tests/TextMarkupKitTests/ParsedTextStorageTests.swift

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,6 @@ private extension ParsedTextStorageTests {
148148
let miniMarkdownRecorder = TextStorageMessageRecorder()
149149
textStorage.delegate = miniMarkdownRecorder
150150
let plainTextStorage = NSTextStorage()
151-
let plainTextRecorder = TextStorageMessageRecorder()
152-
plainTextStorage.delegate = plainTextRecorder
153151
for operation in operations {
154152
operation.apply(to: textStorage)
155153
operation.apply(to: plainTextStorage)
@@ -164,7 +162,6 @@ private extension ParsedTextStorageTests {
164162
print(textStorage.string.debugDescription)
165163
print(plainTextStorage.string.debugDescription)
166164
}
167-
// XCTAssertEqual(textStorage.string, plainTextStorage.string, file: file, line: line)
168165
}
169166
}
170167

0 commit comments

Comments
 (0)