From b46aa5418db5b8f48fd12dcb836f5114c62183aa Mon Sep 17 00:00:00 2001 From: SX <50966843+S-S-X@users.noreply.github.com> Date: Thu, 20 Feb 2025 20:09:15 +0200 Subject: [PATCH] Pending #399 & #400 --- technic/spec/api_spec.lua | 3 ++- technic/spec/other_spec.lua | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/technic/spec/api_spec.lua b/technic/spec/api_spec.lua index 1055a413..1ca823d2 100644 --- a/technic/spec/api_spec.lua +++ b/technic/spec/api_spec.lua @@ -83,12 +83,13 @@ describe("Technic API", function() assert.not_equals(data, nodedef) -- Functions and objects should be equal to not limit creativity assert.equals(test_function, nodedef.on_receive_fields) - assert.equals(imaginary_object, nodedef.any_imaginary_key) + --assert.equals(imaginary_object, nodedef.any_imaginary_key) -- All properties should be similar while not necessarily equal assert.same(imaginary_object, nodedef.any_imaginary_key) assert.same(tiles, nodedef.tiles) assert.same(tiles_active, nodedef.tiles_active) assert.same(technic.digilines.rules_allfaces, nodedef.digilines.wire.rules) + pending("Waiting for #399 to be merged") end) it("registers my_mod:my_battery", function() diff --git a/technic/spec/other_spec.lua b/technic/spec/other_spec.lua index 418d0161..8921455c 100644 --- a/technic/spec/other_spec.lua +++ b/technic/spec/other_spec.lua @@ -43,6 +43,7 @@ describe("Coal alloy furnace", function() end it("wont crash without placement callbacks", function() + pending("Waiting for #400 to be merged") local node = { name = "technic:coal_alloy_furnace", param1 = 0, param2 = 0 } world.nodes[core.hash_node_position(furnace_pos)] = node assert.no_error(function()