File tree Expand file tree Collapse file tree
orb-java-core/src/test/kotlin/com/withorb/api Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11configured_endpoints : 139
2- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-2b77f13a159cf689a3bba6ac5ff03b6c0df62b772e2da04aff52be86710ca4d4 .yml
3- openapi_spec_hash : 28a3f685403d98ddd68b427d92ed28fb
2+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-91a51960dab258d5435cc2a7f47760fd81e4b711b891a1fde3d98757e85e8add .yml
3+ openapi_spec_hash : 192e4e94264db429260169f0b2e731ce
44config_hash : c01c1191b1cd696c7ca855ff6d28a8df
Original file line number Diff line number Diff line change @@ -9,17 +9,16 @@ internal class LicenseTypeCreateParamsTest {
99
1010 @Test
1111 fun create () {
12- LicenseTypeCreateParams .builder().groupingKey(" grouping_key " ).name(" name " ).build()
12+ LicenseTypeCreateParams .builder().groupingKey(" x " ).name(" x " ).build()
1313 }
1414
1515 @Test
1616 fun body () {
17- val params =
18- LicenseTypeCreateParams .builder().groupingKey(" grouping_key" ).name(" name" ).build()
17+ val params = LicenseTypeCreateParams .builder().groupingKey(" x" ).name(" x" ).build()
1918
2019 val body = params._body ()
2120
22- assertThat(body.groupingKey()).isEqualTo(" grouping_key " )
23- assertThat(body.name()).isEqualTo(" name " )
21+ assertThat(body.groupingKey()).isEqualTo(" x " )
22+ assertThat(body.name()).isEqualTo(" x " )
2423 }
2524}
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ internal class LicenseTypeServiceAsyncTest {
2222
2323 val licenseTypeFuture =
2424 licenseTypeServiceAsync.create(
25- LicenseTypeCreateParams .builder().groupingKey(" grouping_key " ).name(" name " ).build()
25+ LicenseTypeCreateParams .builder().groupingKey(" x " ).name(" x " ).build()
2626 )
2727
2828 val licenseType = licenseTypeFuture.get()
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ internal class LicenseTypeServiceTest {
2222
2323 val licenseType =
2424 licenseTypeService.create(
25- LicenseTypeCreateParams .builder().groupingKey(" grouping_key " ).name(" name " ).build()
25+ LicenseTypeCreateParams .builder().groupingKey(" x " ).name(" x " ).build()
2626 )
2727
2828 licenseType.validate()
You can’t perform that action at this time.
0 commit comments