From 73e0ceb6724f103f52a08c801b4a0ac987faa8c1 Mon Sep 17 00:00:00 2001 From: Daniel Chew Date: Tue, 8 Oct 2024 11:19:42 +0900 Subject: [PATCH] precommit --- target_chains/ton/contracts/tests/PythTest.spec.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/target_chains/ton/contracts/tests/PythTest.spec.ts b/target_chains/ton/contracts/tests/PythTest.spec.ts index 1301cf224..2284b385e 100644 --- a/target_chains/ton/contracts/tests/PythTest.spec.ts +++ b/target_chains/ton/contracts/tests/PythTest.spec.ts @@ -606,8 +606,9 @@ describe("PythTest", () => { // Verify that the old data source is no longer valid const oldDataSource = DATA_SOURCES[0]; - const oldDataSourceIsValid = - await pythTest.getIsValidDataSource(oldDataSource); + const oldDataSourceIsValid = await pythTest.getIsValidDataSource( + oldDataSource + ); expect(oldDataSourceIsValid).toBe(false); });