Skip to content

Commit

Permalink
Common - Fix a format in test macro
Browse files Browse the repository at this point in the history
  • Loading branch information
PabstMirror committed Aug 24, 2024
1 parent 2be0735 commit 1b550b3
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 1b550b3

Please sign in to comment.