Skip to content

Commit a1d5033

Browse files
committed
Fix crash.
1 parent 9bb95b0 commit a1d5033

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

.github/workflows/swift.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This workflow will build a Swift project
22
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
33

4-
name: Swift
4+
name: Unit Tests
55

66
on:
77
push:

Sources/LaTeXSwiftUI/Views/ComponentBlockText.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ internal struct ComponentBlockText: View {
5050

5151
// MARK: View body
5252

53-
var body: some View {
53+
var body: Text {
5454
block.components.enumerated().map { i, component in
5555
return component.convertToText(
5656
font: font ?? .body,

Sources/LaTeXSwiftUI/Views/ComponentBlocksText.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ internal struct ComponentBlocksText: View {
3838

3939
var body: some View {
4040
blocks.map { block in
41-
let text = ComponentBlockText(block: block).body as! Text
41+
let text = ComponentBlockText(block: block).body
4242
return block.isEquationBlock && !forceInline ?
4343
Text("\n") + text + Text("\n") :
4444
text

Tests/LaTeXSwiftUITests/GeometryTests.swift

+15
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ import XCTest
44

55
final class GeometryTests: XCTestCase {
66

7+
func testInitXHeight_Success1() {
8+
let value = SVGGeometry.XHeight(stringValue: "0ex")
9+
XCTAssertEqual(value, 0)
10+
}
11+
12+
func testInitXHeight_Success2() {
13+
let value = SVGGeometry.XHeight(stringValue: "0")
14+
XCTAssertEqual(value, 0)
15+
}
16+
17+
func testInitXHeight_Failure() {
18+
let value = SVGGeometry.XHeight(stringValue: "zeroex")
19+
XCTAssertNil(value)
20+
}
21+
722
func testSVGGeometry_parseAlignment() {
823
let input = "\"vertical-align: -1.602ex;\""
924
let value = SVGGeometry.parseAlignment(from: input)

0 commit comments

Comments
 (0)