Skip to content

Commit

Permalink
Remove unnecessary string consts
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuvindu committed Oct 4, 2023
1 parent 3680256 commit ddbb1a9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions ballerina/modules/soap11/tests/soap11_client_test.bal
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,13 @@ import ballerina/crypto;
import ballerina/mime;
import ballerina/test;

const wssec:TransportBindingConfig TRANSPORT_BINDING = "TransportBinding";
const wssec:NoPolicy NO_POLICY = "NoPolicy";
const string KEY_ALIAS = "wss40";
const string KEY_PASSWORD = "security";
const string KEY_STORE_PATH = "modules/wssec/tests/resources/wss40.p12";
const string X509_PUBLIC_CERT_PATH = "modules/wssec/tests/resources/x509_certificate.crt";
const string X509_PUBLIC_CERT_PATH_2 = "modules/wssec/tests/resources/x509_certificate_2.crt";
const string X509_KEY_STORE_PATH = "modules/wssec/tests/resources/x509_certificate.p12";
const string X509_KEY_STORE_PATH_2 = "modules/wssec/tests/resources/x509_certificate_2.p12";
const wssec:TransportBindingConfig TRANSPORT_BINDING = "TransportBinding";
const wssec:NoPolicy NO_POLICY = "NoPolicy";

@test:Config {
groups: ["soap11", "send_only"]
Expand Down

0 comments on commit ddbb1a9

Please sign in to comment.