diff --git a/target_chains/ton/contracts/contracts/common/errors.fc b/target_chains/ton/contracts/contracts/common/errors.fc index df39a1e6d..d91fd5e60 100644 --- a/target_chains/ton/contracts/contracts/common/errors.fc +++ b/target_chains/ton/contracts/contracts/common/errors.fc @@ -42,4 +42,4 @@ const int ERROR_INVALID_GOVERNANCE_MAGIC = 1035; const int ERROR_INVALID_GOVERNANCE_MODULE = 1036; ;; Common -const int ERROR_INSUFFICIENT_GAS = 1037; \ No newline at end of file +const int ERROR_INSUFFICIENT_GAS = 1037; diff --git a/target_chains/ton/contracts/tests/PythTest.spec.ts b/target_chains/ton/contracts/tests/PythTest.spec.ts index 8700d4f81..6a7b81ab9 100644 --- a/target_chains/ton/contracts/tests/PythTest.spec.ts +++ b/target_chains/ton/contracts/tests/PythTest.spec.ts @@ -400,8 +400,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); });