use proper type in unit tests
This commit is contained in:
parent
fbd37c90a4
commit
85810123a2
@ -51,7 +51,7 @@ static void test_dice_fudge_set(void **data)
|
|||||||
static void test_dice_fudge_roll_one(void **data)
|
static void test_dice_fudge_roll_one(void **data)
|
||||||
{
|
{
|
||||||
dice_t d = dice_new();
|
dice_t d = dice_new();
|
||||||
int result = 0, i = 0;
|
int64_t result = 0, i = 0;
|
||||||
|
|
||||||
dice_set(d, DICEOPTION_FUDGE, true);
|
dice_set(d, DICEOPTION_FUDGE, true);
|
||||||
dice_set(d, DICEOPTION_AMOUNT, 1L);
|
dice_set(d, DICEOPTION_AMOUNT, 1L);
|
||||||
@ -67,7 +67,7 @@ static void test_dice_fudge_roll_one(void **data)
|
|||||||
static void test_dice_fudge_roll_more(void **data)
|
static void test_dice_fudge_roll_more(void **data)
|
||||||
{
|
{
|
||||||
dice_t d = dice_new();
|
dice_t d = dice_new();
|
||||||
int result = 0, i = 0;
|
int64_t result = 0, i = 0;
|
||||||
|
|
||||||
dice_set(d, DICEOPTION_FUDGE, true);
|
dice_set(d, DICEOPTION_FUDGE, true);
|
||||||
dice_set(d, DICEOPTION_AMOUNT, 6L);
|
dice_set(d, DICEOPTION_AMOUNT, 6L);
|
||||||
|
Loading…
Reference in New Issue
Block a user