Skip to content

Commit 37704f9

Browse files
committed
Fix tests
1 parent 4044909 commit 37704f9

20 files changed

+20
-20
lines changed

Tests/__Snapshots__/APIClientDocumentationTests/testRequestDocumented.1.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ extension RequestDocAPI {
2828
Finds Pets by status
2929

3030
- Parameter status: (query) Status values that need to be considered for filter (optional)
31-
- Returns: An `EnvIO` to perform IO operations that produce errors of type `HTTPError` and values of type `Void`, having access to an immutable environment of type `API.Config`. It can be seen as a Kleisli function `(API.Config) -> IO<API.HTTPError, NoResponse>`.
31+
- Returns: An `EnvIO` to perform IO operations that produce errors of type `HTTPError` and values of type `Void`, having access to an immutable environment of type `API.Config`.
3232
*/
3333
public func findPetsByStatus(status: Object? = nil) -> EnvIO<API.Config, API.HTTPError, NoResponse> {
3434
_findPetsByStatus(status: status)

Tests/__Snapshots__/APIClientGeneratorTests/testApiClientGenerated_JSONSchema.1.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extension DefaultAPI {
2727
/**
2828
List all pets
2929

30-
- Returns: An `EnvIO` to perform IO operations that produce errors of type `HTTPError` and values of type `Void`, having access to an immutable environment of type `API.Config`. It can be seen as a Kleisli function `(API.Config) -> IO<API.HTTPError, NoResponse>`.
30+
- Returns: An `EnvIO` to perform IO operations that produce errors of type `HTTPError` and values of type `Void`, having access to an immutable environment of type `API.Config`.
3131
*/
3232
public func testSchemaFormat() -> EnvIO<API.Config, API.HTTPError, NoResponse> {
3333
_testSchemaFormat()

Tests/__Snapshots__/APIClientGeneratorTests/testApiClientGenerated_OpenAPISchema.1.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ extension DefaultAPI {
2626

2727
/**
2828

29-
- Returns: An `EnvIO` to perform IO operations that produce errors of type `HTTPError` and values of type `Void`, having access to an immutable environment of type `API.Config`. It can be seen as a Kleisli function `(API.Config) -> IO<API.HTTPError, NoResponse>`.
29+
- Returns: An `EnvIO` to perform IO operations that produce errors of type `HTTPError` and values of type `Void`, having access to an immutable environment of type `API.Config`.
3030
*/
3131
public func testSchema() -> EnvIO<API.Config, API.HTTPError, NoResponse> {
3232
_testSchema()

Tests/__Snapshots__/APIClientGeneratorTests/testApiClientGenerated_SwaggerSchema.1.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ extension DefaultAPI {
2626

2727
/**
2828

29-
- Returns: An `EnvIO` to perform IO operations that produce errors of type `HTTPError` and values of type `Void`, having access to an immutable environment of type `API.Config`. It can be seen as a Kleisli function `(API.Config) -> IO<API.HTTPError, NoResponse>`.
29+
- Returns: An `EnvIO` to perform IO operations that produce errors of type `HTTPError` and values of type `Void`, having access to an immutable environment of type `API.Config`.
3030
*/
3131
public func testSchema() -> EnvIO<API.Config, API.HTTPError, NoResponse> {
3232
_testSchema()

Tests/__Snapshots__/APIClientGeneratorTests/testApiClientGenerated_YAMLSchema.1.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extension DefaultAPI {
2727
/**
2828
List all pets
2929

30-
- Returns: An `EnvIO` to perform IO operations that produce errors of type `HTTPError` and values of type `Void`, having access to an immutable environment of type `API.Config`. It can be seen as a Kleisli function `(API.Config) -> IO<API.HTTPError, NoResponse>`.
30+
- Returns: An `EnvIO` to perform IO operations that produce errors of type `HTTPError` and values of type `Void`, having access to an immutable environment of type `API.Config`.
3131
*/
3232
public func testSchemaFormat() -> EnvIO<API.Config, API.HTTPError, NoResponse> {
3333
_testSchemaFormat()

Tests/__Snapshots__/APIClientGeneratorTests/testDefinedTags_GenerateTagAPI.1.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extension PetAPI {
2727
/**
2828
Info for a specific pet
2929

30-
- Returns: An `EnvIO` to perform IO operations that produce errors of type `HTTPError` and values of type `Void`, having access to an immutable environment of type `API.Config`. It can be seen as a Kleisli function `(API.Config) -> IO<API.HTTPError, NoResponse>`.
30+
- Returns: An `EnvIO` to perform IO operations that produce errors of type `HTTPError` and values of type `Void`, having access to an immutable environment of type `API.Config`.
3131
*/
3232
public func getPet() -> EnvIO<API.Config, API.HTTPError, NoResponse> {
3333
_getPet()

Tests/__Snapshots__/APIClientGeneratorTests/testNoDefinedTags_GenerateDefaultAPI.1.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extension DefaultAPI {
2727
/**
2828
Info for a specific pet
2929

30-
- Returns: An `EnvIO` to perform IO operations that produce errors of type `HTTPError` and values of type `Void`, having access to an immutable environment of type `API.Config`. It can be seen as a Kleisli function `(API.Config) -> IO<API.HTTPError, NoResponse>`.
30+
- Returns: An `EnvIO` to perform IO operations that produce errors of type `HTTPError` and values of type `Void`, having access to an immutable environment of type `API.Config`.
3131
*/
3232
public func getPet() -> EnvIO<API.Config, API.HTTPError, NoResponse> {
3333
_getPet()

Tests/__Snapshots__/APIClientHttpOperationTests/testNoDefinedOperationId_OperationUsingEndpointNaming.1.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extension DefaultAPI {
2727
/**
2828
Info for a specific pet
2929

30-
- Returns: An `EnvIO` to perform IO operations that produce errors of type `HTTPError` and values of type `Void`, having access to an immutable environment of type `API.Config`. It can be seen as a Kleisli function `(API.Config) -> IO<API.HTTPError, NoResponse>`.
30+
- Returns: An `EnvIO` to perform IO operations that produce errors of type `HTTPError` and values of type `Void`, having access to an immutable environment of type `API.Config`.
3131
*/
3232
public func v1TestingPetGet() -> EnvIO<API.Config, API.HTTPError, NoResponse> {
3333
_v1TestingPetGet()

Tests/__Snapshots__/APIClientHttpOperationTests/testRequestDELETE.1.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ extension DefaultAPI {
2626

2727
/**
2828

29-
- Returns: An `EnvIO` to perform IO operations that produce errors of type `HTTPError` and values of type `Void`, having access to an immutable environment of type `API.Config`. It can be seen as a Kleisli function `(API.Config) -> IO<API.HTTPError, NoResponse>`.
29+
- Returns: An `EnvIO` to perform IO operations that produce errors of type `HTTPError` and values of type `Void`, having access to an immutable environment of type `API.Config`.
3030
*/
3131
public func deletePet() -> EnvIO<API.Config, API.HTTPError, NoResponse> {
3232
_deletePet()

Tests/__Snapshots__/APIClientHttpOperationTests/testRequestGET.1.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ extension DefaultAPI {
2626

2727
/**
2828

29-
- Returns: An `EnvIO` to perform IO operations that produce errors of type `HTTPError` and values of type `Void`, having access to an immutable environment of type `API.Config`. It can be seen as a Kleisli function `(API.Config) -> IO<API.HTTPError, NoResponse>`.
29+
- Returns: An `EnvIO` to perform IO operations that produce errors of type `HTTPError` and values of type `Void`, having access to an immutable environment of type `API.Config`.
3030
*/
3131
public func getPet() -> EnvIO<API.Config, API.HTTPError, NoResponse> {
3232
_getPet()

0 commit comments

Comments
 (0)