Skip to content

Commit

Permalink
fix: Update the server version to fix th E2E test
Browse files Browse the repository at this point in the history
  • Loading branch information
sitaram-kalluri committed Dec 5, 2024
1 parent c0924fa commit 4fb2928
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 @@ -55,13 +55,13 @@ void main() {
test('A test to verify lookup metadata contains public key hash value',
() async {
Version atSign1ServerVersion = Version.parse(await sh1.getVersion());
if (atSign1ServerVersion < Version(3, 0, 52)) {
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');
return;
}
Version atSign2ServerVersion = Version.parse(await sh2.getVersion());
if (atSign2ServerVersion < Version(3, 0, 52)) {
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');
return;
Expand Down

0 comments on commit 4fb2928

Please sign in to comment.