12
12
using Google . Protobuf . WellKnownTypes ;
13
13
using Greet ;
14
14
using Grpc . Net . Client ;
15
- using NarrowIntegrationTest . Lookup ;
15
+ using ExampleIntegrationTest . Lookup ;
16
16
using WireMock . Constants ;
17
17
using WireMock . Matchers ;
18
18
using WireMock . RequestBuilders ;
@@ -668,7 +668,7 @@ public async Task WireMockServer_WithBodyAsProtoBuf_Enum_UsingPolicyGrpcGenerate
668
668
. RespondWith ( Response . Create ( )
669
669
. WithHeader ( "Content-Type" , "application/grpc" )
670
670
. WithTrailingHeader ( "grpc-status" , "0" )
671
- . WithBodyAsProtoBuf ( definition , "NarrowIntegrationTest .Lookup.GetVersionResponse" ,
671
+ . WithBodyAsProtoBuf ( definition , "ExampleIntegrationTest .Lookup.GetVersionResponse" ,
672
672
new GetVersionResponse
673
673
{
674
674
Version = version ,
@@ -677,9 +677,9 @@ public async Task WireMockServer_WithBodyAsProtoBuf_Enum_UsingPolicyGrpcGenerate
677
677
Seconds = seconds ,
678
678
Nanos = nanos
679
679
} ,
680
- Client = new NarrowIntegrationTest . Lookup . Client
680
+ Client = new ExampleIntegrationTest . Lookup . Client
681
681
{
682
- ClientName = NarrowIntegrationTest . Lookup . Client . Types . Clients . BillingCenter ,
682
+ ClientName = ExampleIntegrationTest . Lookup . Client . Types . Clients . Test ,
683
683
CorrelationId = correlationId
684
684
}
685
685
}
@@ -695,7 +695,7 @@ public async Task WireMockServer_WithBodyAsProtoBuf_Enum_UsingPolicyGrpcGenerate
695
695
// Assert
696
696
reply . Version . Should ( ) . Be ( version ) ;
697
697
reply . DateHired . Should ( ) . Be ( new Timestamp { Seconds = seconds , Nanos = nanos } ) ;
698
- reply . Client . ClientName . Should ( ) . Be ( NarrowIntegrationTest . Lookup . Client . Types . Clients . BillingCenter ) ;
698
+ reply . Client . ClientName . Should ( ) . Be ( ExampleIntegrationTest . Lookup . Client . Types . Clients . Test ) ;
699
699
reply . Client . CorrelationId . Should ( ) . Be ( correlationId ) ;
700
700
}
701
701
0 commit comments