From e00c07db8ab1b33be17605b6a3d9bf903ba3ebcf Mon Sep 17 00:00:00 2001 From: jiasli <4003950+jiasli@users.noreply.github.com> Date: Tue, 10 Jun 2025 18:05:23 +0800 Subject: [PATCH] test_adal_authentication --- .../auth/tests/test_adal_authentication.py | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/azure-cli-core/azure/cli/core/auth/tests/test_adal_authentication.py diff --git a/src/azure-cli-core/azure/cli/core/auth/tests/test_adal_authentication.py b/src/azure-cli-core/azure/cli/core/auth/tests/test_adal_authentication.py deleted file mode 100644 index f3a48cb7c90..00000000000 --- a/src/azure-cli-core/azure/cli/core/auth/tests/test_adal_authentication.py +++ /dev/null @@ -1,18 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -import unittest - -from azure.cli.core.auth.adal_authentication import _normalize_expires_on - - -class TestUtil(unittest.TestCase): - def test_normalize_expires_on(self): - assert _normalize_expires_on("11/05/2021 15:18:31 +00:00") == 1636125511 - assert _normalize_expires_on('1636125511') == 1636125511 - - -if __name__ == '__main__': - unittest.main()