Skip to content

Commit

Permalink
Restructure import order
Browse files Browse the repository at this point in the history
  • Loading branch information
ayeshLK committed May 31, 2024
1 parent 010741e commit 4171eb3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ballerina/tests/jwt_issuer_test.bal
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@

// NOTE: All the tokens/credentials used in this test are dummy tokens/credentials and used only for testing purposes.

import ballerina/lang.'string;
import ballerina/test;
import ballerina/crypto;
import ballerina/io;
import ballerina/lang.'string;
import ballerina/test;

@test:Config {}
isolated function testIssueJwtWithAllFields() returns Error? {
Expand Down
4 changes: 2 additions & 2 deletions ballerina/tests/jwt_validator_test.bal
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@

// NOTE: All the tokens/credentials used in this test are dummy tokens/credentials and used only for testing purposes.

import ballerina/test;
import ballerina/io;
import ballerina/crypto;
import ballerina/io;
import ballerina/test;

@test:Config {}
isolated function testValidateJwtWithAudAsArray() returns Error? {
Expand Down

0 comments on commit 4171eb3

Please sign in to comment.