Skip to content

Commit

Permalink
Change test function name appropriately
Browse files Browse the repository at this point in the history
  • Loading branch information
gwangyong-lee committed Oct 11, 2022
1 parent 7f8ce08 commit 35c5903
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tests/GzipTests/GzipTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@ final class GzipTests: XCTestCase {
XCTAssertEqual(json?.last, "}")
}

func testMultipleDecompression() throws {
let firstData = try "test".data(using: .utf8)!.gzipped()
let secondData = try "string".data(using: .utf8)!.gzipped()
func testDecompressionCompositedCompression() throws {
let firstData = try XCTUnwrap("test".data(using: .utf8)).gzipped()
let secondData = try XCTUnwrap("string".data(using: .utf8)).gzipped()

let data = firstData + secondData

Expand Down

0 comments on commit 35c5903

Please sign in to comment.