Skip to content

Commit 4c7fbf6

Browse files
committed
fix: formatting
1 parent 7add077 commit 4c7fbf6

2 files changed

Lines changed: 20 additions & 2 deletions

File tree

src/test/integration/indexer.test.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,16 @@ describe('Indexer stores a new metadata events and orders.', () => {
103103

104104
const config = await getConfiguration(true)
105105
database = await Database.init(config.dbConfig)
106-
oceanNode = OceanNode.getInstance(config, database, null, null, null, null, null, true)
106+
oceanNode = OceanNode.getInstance(
107+
config,
108+
database,
109+
null,
110+
null,
111+
null,
112+
null,
113+
null,
114+
true
115+
)
107116
indexer = new OceanIndexer(
108117
database,
109118
mockSupportedNetworks,

src/test/integration/pricing.test.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,16 @@ describe('Publish pricing scehmas and assert ddo stats - FRE & Dispenser', () =>
8787

8888
const config = await getConfiguration(true)
8989
database = await Database.init(config.dbConfig)
90-
oceanNode = OceanNode.getInstance(config, database, null, null, null, null, null, true)
90+
oceanNode = OceanNode.getInstance(
91+
config,
92+
database,
93+
null,
94+
null,
95+
null,
96+
null,
97+
null,
98+
true
99+
)
91100
indexer = new OceanIndexer(
92101
database,
93102
mockSupportedNetworks,

0 commit comments

Comments
 (0)