From cddf320f0b3eeca55ba998f14bc21c03b51f728e Mon Sep 17 00:00:00 2001 From: Florian Loitsch Date: Thu, 17 Oct 2024 09:51:20 +0200 Subject: [PATCH] Update test. --- tests/parse_x509_test.toit | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/parse_x509_test.toit b/tests/parse_x509_test.toit index 5c55861..fecf43f 100644 --- a/tests/parse_x509_test.toit +++ b/tests/parse_x509_test.toit @@ -6,9 +6,9 @@ import certificate_roots import expect show * main: - dst := certificate_roots.DST_ROOT_CA_X3 - cyber := certificate_roots.CYBERTRUST_GLOBAL_ROOT - globalsign := certificate_roots.GLOBALSIGN_ROOT_CA_R2 - expect_not_equals dst cyber - expect_not_equals dst globalsign - expect_not_equals cyber globalsign + baltimore := certificate_roots.BALTIMORE-CYBERTRUST-ROOT + amazon-1 := certificate_roots.AMAZON-ROOT-CA-1 + comodo := certificate_roots.COMODO-AAA-SERVICES-ROOT + expect_not_equals baltimore amazon-1 + expect_not_equals amazon-1 comodo + expect_not_equals comodo baltimore