Skip to content

Commit

Permalink
Remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
valeriyvan committed Jul 23, 2024
1 parent 160c8fd commit 7e27bc4
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Tests/geometrizeTests/SVGAsyncGeometrizerTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,11 @@ final class SVGAsyncGeometrizerTests: XCTestCase {
guard let urlSource = Bundle.module.url(forResource: "sunrise_at_sea", withExtension: "ppm") else {
fatalError("No resource files")
}
print("point0")
let ppmString = try String(contentsOf: urlSource)
let bitmap = try Bitmap(ppmString: ppmString)

let updateMarker = "<!-- insert here next shapes -->\n"

print("point1")
let svgSequence: SVGAsyncSequence = try await SVGAsyncGeometrizer.geometrize(
bitmap: bitmap,
shapeTypes: [RotatedEllipse.self],
Expand All @@ -58,7 +56,6 @@ final class SVGAsyncGeometrizerTests: XCTestCase {
var firstSVG: String? = nil
var svgAdOns: String = ""

print("point2")
var counter = 0
for await result in svgSequence {
if firstSVG != nil {
Expand Down

0 comments on commit 7e27bc4

Please sign in to comment.