From 79d45da6b0c997e1d8ea8ccae6f1cd3ebacc7d5f Mon Sep 17 00:00:00 2001 From: Sitaram Kalluri Date: Mon, 9 Dec 2024 16:47:53 +0530 Subject: [PATCH] fix: Update the server version in the E2E test log. --- tests/at_end2end_test/test/lookup_verb_test.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/at_end2end_test/test/lookup_verb_test.dart b/tests/at_end2end_test/test/lookup_verb_test.dart index dc9be531e..67237dbc1 100644 --- a/tests/at_end2end_test/test/lookup_verb_test.dart +++ b/tests/at_end2end_test/test/lookup_verb_test.dart @@ -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);