Skip to content

Commit

Permalink
Merge pull request #1685 from CBATeam/fixTestFormat
Browse files Browse the repository at this point in the history
Common - Fix a format in test macro
  • Loading branch information
PabstMirror authored Aug 30, 2024
2 parents 105fcc2 + 1b550b3 commit dd56d22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/common/test_weaponComponents.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ private _fnc_name = "CBA_fnc_weaponComponents";
private _fnc = call compile _fnc_name;

LOGF ["========== TEST ========== - %1 -", _fnc_name];
if (!isNil "_fnc") then {LOGF ["TEST: OK - %1 defined", _fnc_name]} else {LOGF ["TEST: FAIL - %1 undefined"]};
if (!isNil "_fnc") then {LOGF ["TEST: OK - %1 defined", _fnc_name]} else {LOGF ["TEST: FAIL - %1 undefined", _fnc_name]};

_result = "" call _fnc;
_expected = [];
Expand Down

0 comments on commit dd56d22

Please sign in to comment.