From 50d6b9055ca889e711cb28997212830950c26683 Mon Sep 17 00:00:00 2001 From: Matt Fellows Date: Thu, 11 May 2017 20:46:22 +1000 Subject: [PATCH] fix(providerstate): make provider state serialisation spec compliant #16 --- dsl/interaction.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsl/interaction.go b/dsl/interaction.go index c4a85b867..2341f2cbf 100644 --- a/dsl/interaction.go +++ b/dsl/interaction.go @@ -17,7 +17,7 @@ type Interaction struct { Description string `json:"description"` // Provider state to be written into the Pact file - State string `json:"provider_state,omitempty"` + State string `json:"providerState,omitempty"` } // Given specifies a provider state. Optional.