Fixed tests not passing due to 1-indexed system vs 0-indexed thinking
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
471dbac3b9
commit
5b3bc26bdb
|
@ -14,7 +14,7 @@ namespace Porygon::UserData{
|
|||
UserDataCollectionRangeIterator(size_t start, size_t end){
|
||||
_start = start;
|
||||
_end = end;
|
||||
_current = start;
|
||||
_current = _start;
|
||||
}
|
||||
|
||||
const Evaluation::EvalValue* GetCurrent() final{
|
||||
|
|
|
@ -191,7 +191,7 @@ end
|
|||
auto obj = new UserDataTestObject();
|
||||
auto parameter = new UserDataValue(HashedString::ConstHash("testObject"), obj);
|
||||
auto result = script->CallFunction(u"testFunc", {parameter});
|
||||
REQUIRE(result->EvaluateInteger() == 6);
|
||||
REQUIRE(result->EvaluateInteger() == 10);
|
||||
delete obj;
|
||||
delete parameter;
|
||||
delete script;
|
||||
|
|
Loading…
Reference in New Issue