Skip to content

Commit

Permalink
fix: Update the server version in the E2E test log.
Browse files Browse the repository at this point in the history
  • Loading branch information
sitaram-kalluri committed Dec 9, 2024
1 parent 4fb2928 commit 79d45da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/at_end2end_test/test/lookup_verb_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ void main() {
Version atSign1ServerVersion = Version.parse(await sh1.getVersion());
if (atSign1ServerVersion < Version(3, 1, 0)) {
print(
'Found $atSign_1 with server version: $atSign1ServerVersion. This test is only applicable for server version greater than 3.0.52. Skipping the test');
'Found $atSign_1 with server version: $atSign1ServerVersion. This test is only applicable for server version greater than 3.1.0. Skipping the test');
return;
}
Version atSign2ServerVersion = Version.parse(await sh2.getVersion());
if (atSign2ServerVersion < Version(3, 1, 0)) {
print(
'Found $atSign_2 with server version: $atSign2ServerVersion. This test is only applicable for server version greater than 3.0.52. Skipping the test');
'Found $atSign_2 with server version: $atSign2ServerVersion. This test is only applicable for server version greater than 3.1.0. Skipping the test');
return;
}
var lastValue = Random().nextInt(5);
Expand Down

0 comments on commit 79d45da

Please sign in to comment.