Skip to content

Commit

Permalink
chore(test): fix import to fix integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dtfiedler committed Oct 15, 2024
1 parent 91c4c5b commit f13fe02
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/common/utils.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-- the majority of this file came from https://github.com/permaweb/aos/blob/main/process/utils.lua

local constants = require("constants")
local json = require("json")
local constants = require(".common.constants")
local json = require(".common.json")
local utils = { _version = "0.0.1" }

local function isArray(table)
Expand Down
2 changes: 1 addition & 1 deletion test/registry.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe('Registry Updates', async () => {
const { handle: originalHandle, memory: startMemory } =
await createAntAosLoader();

const controllerAddress = 'controller-address'.padEnd(43, '0');
const controllerAddress = 'controller-address-'.padEnd(43, '0');

async function handle(options = {}, mem = startMemory) {
return originalHandle(
Expand Down

0 comments on commit f13fe02

Please sign in to comment.