Skip to content

Commit

Permalink
fix: use the same signature for the same function (#402) (#422)
Browse files Browse the repository at this point in the history
m15o authored May 30, 2024
1 parent 01c155f commit 8a9bc48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/native/mock_server.go
Original file line number Diff line number Diff line change
@@ -62,10 +62,10 @@ int pactffi_create_mock_server_for_pact(PactHandle pact, const char *addr_str, b
void pactffi_with_specification(PactHandle pact, int specification_version);
/// Adds a provider state to the Interaction
void pactffi_given(InteractionHandle interaction, const char *description);
bool pactffi_given(InteractionHandle interaction, const char *description);
/// Adds a provider state with params to the Interaction
void pactffi_given_with_param(InteractionHandle interaction, const char *description, const char *name, const char *value);
bool pactffi_given_with_param(InteractionHandle interaction, const char *description, const char *name, const char *value);
/// Get self signed certificate for TLS mode
char* pactffi_get_tls_ca_certificate();

0 comments on commit 8a9bc48

Please sign in to comment.