From 8af9cecbde5b4c9822ff85cdbd4f598e394028b9 Mon Sep 17 00:00:00 2001 From: Steve Wood <40241007+woodsp-ibm@users.noreply.github.com> Date: Thu, 15 Feb 2024 14:01:57 -0500 Subject: [PATCH] Fix test_data_providers test_yahoo test (#328) --- test/data_providers/test_data_providers.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/data_providers/test_data_providers.py b/test/data_providers/test_data_providers.py index 0ddd85ab..0a29e852 100644 --- a/test/data_providers/test_data_providers.py +++ b/test/data_providers/test_data_providers.py @@ -1,6 +1,6 @@ # This code is part of a Qiskit project. # -# (C) Copyright IBM 2019, 2023. +# (C) Copyright IBM 2019, 2024. # # This code is licensed under the Apache License, Version 2.0. You may # obtain a copy of this license in the LICENSE.txt file in the root directory @@ -200,8 +200,8 @@ def test_exchangedata(self): self.fail(f"Test of ExchangeDataProvider failed: {str(ex)}") @data( - [["MSFT", "AAPL"], [[1344, 474.0], [474.0, 211.0]], [[1.0, 2.99e-05], [2.99e-05, 1.0]]], - ["MSFT", 1344.0, [[1.0]]], + [["MSFT", "AAPL"], [[1339, 473.0], [473.0, 210.0]], [[1.0, 2.99e-05], [2.99e-05, 1.0]]], + ["MSFT", 1339.0, [[1.0]]], ) @unpack def test_yahoo(self, tickers, covariance, similarity):