From 35c59032f6e78b959a2cc625be1ad86d6e962871 Mon Sep 17 00:00:00 2001 From: gwangyong-lee Date: Tue, 11 Oct 2022 18:13:27 +0900 Subject: [PATCH] Change test function name appropriately --- Tests/GzipTests/GzipTests.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Tests/GzipTests/GzipTests.swift b/Tests/GzipTests/GzipTests.swift index 721d321..8fb24e3 100644 --- a/Tests/GzipTests/GzipTests.swift +++ b/Tests/GzipTests/GzipTests.swift @@ -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