Skip to content

Commit

Permalink
Fix Array and Dictionary id() and dictionary test bug
Browse files Browse the repository at this point in the history
  • Loading branch information
cdemirer committed Dec 30, 2021
1 parent 9f05867 commit e2ed9d1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/variant/array.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ Variant Array::max() const {
}

const void *Array::id() const {
return _p->array.ptr();
return _p;
}

Array::Array(const Array &p_from, uint32_t p_type, const StringName &p_class_name, const Variant &p_script) {
Expand Down
2 changes: 1 addition & 1 deletion core/variant/dictionary.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ void Dictionary::operator=(const Dictionary &p_dictionary) {
}

const void *Dictionary::id() const {
return _p->variant_map.id();
return _p;
}

Dictionary::Dictionary(const Dictionary &p_from) {
Expand Down
2 changes: 1 addition & 1 deletion tests/core/variant/test_dictionary.h
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ TEST_CASE("[Dictionary] Duplicate dictionary") {
Dictionary shallow_d = d.duplicate(false);
CHECK_MESSAGE(shallow_d.id() != d.id(), "Should create a new array");
CHECK_MESSAGE(Dictionary(shallow_d[1]).id() == Dictionary(d[1]).id(), "Should keep nested dictionary");
CHECK_MESSAGE(Array(shallow_d[2]).id() == Array(d[2]).id(), "Should keep nested array");
CHECK_MESSAGE(Array(shallow_d[k2]).id() == Array(d[k2]).id(), "Should keep nested array");
CHECK_EQ(shallow_d, d);
shallow_d[0] = 0;
CHECK_NE(shallow_d, d);
Expand Down

0 comments on commit e2ed9d1

Please sign in to comment.