Skip to content

Commit ccd74ec

Browse files
authored
Merge pull request #2157 from planetarium/bugfix/transfer-assets
obosolete transfer_assets2
2 parents 2289777 + 73c28d1 commit ccd74ec

File tree

7 files changed

+670
-15
lines changed

7 files changed

+670
-15
lines changed

.Lib9c.Tests/Action/TransferAssetTest.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ public void Execute_Throw_ArgumentException()
329329
amount: _currency * 100
330330
);
331331
// 스테이킹 주소에 송금하려고 하면 실패합니다.
332-
Assert.Throws<ArgumentException>("Recipient", () => action.Execute(new ActionContext()
332+
Assert.Throws<ArgumentException>("recipient", () => action.Execute(new ActionContext()
333333
{
334334
PreviousState = baseState
335335
.SetState(
@@ -339,7 +339,7 @@ public void Execute_Throw_ArgumentException()
339339
Rehearsal = false,
340340
BlockIndex = 1,
341341
}));
342-
Assert.Throws<ArgumentException>("Recipient", () => action.Execute(new ActionContext()
342+
Assert.Throws<ArgumentException>("recipient", () => action.Execute(new ActionContext()
343343
{
344344
PreviousState = baseState
345345
.SetState(
@@ -355,7 +355,7 @@ public void Execute_Throw_ArgumentException()
355355
Rehearsal = false,
356356
BlockIndex = 1,
357357
}));
358-
Assert.Throws<ArgumentException>("Recipient", () => action.Execute(new ActionContext()
358+
Assert.Throws<ArgumentException>("recipient", () => action.Execute(new ActionContext()
359359
{
360360
PreviousState = baseState
361361
.SetState(
@@ -372,7 +372,7 @@ public void Execute_Throw_ArgumentException()
372372
var monsterCollectionRewardSheet = new MonsterCollectionRewardSheet();
373373
monsterCollectionRewardSheet.Set(
374374
"level,required_gold,reward_id\n1,500,1\n2,1800,2\n3,7200,3\n4,54000,4\n5,270000,5\n6,480000,6\n7,1500000,7\n");
375-
Assert.Throws<ArgumentException>("Recipient", () => action.Execute(new ActionContext()
375+
Assert.Throws<ArgumentException>("recipient", () => action.Execute(new ActionContext()
376376
{
377377
PreviousState = baseState
378378
.SetState(

0 commit comments

Comments
 (0)