Skip to content

Commit 0181384

Browse files
Nao NishijimaNao Nishijima
Nao Nishijima
authored and
Nao Nishijima
committed
[FAB-4257] Fix wrong dir name in the UT
core/scc/cscc/configure_test.go didn't delete directory after UT. This patch fixs wrong directory name. The directory that should be deleted after the UT is not deleted because of the wrong directory name. Change-Id: I85b1c33cf6751669d2c3f09bd63f49dd3fdfacfb Signed-off-by: Nao Nishijima <[email protected]>
1 parent 5ba27bf commit 0181384

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/scc/cscc/configure_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ func TestConfigerInvokeJoinChainCorrectParams(t *testing.T) {
168168
peer.MockInitialize()
169169
ledgermgmt.InitializeTestEnv()
170170
defer ledgermgmt.CleanupTestEnv()
171-
defer os.RemoveAll("/tmp/hyperledgerest/")
171+
defer os.RemoveAll("/tmp/hyperledgertest/")
172172

173173
e := new(PeerConfiger)
174174
stub := shim.NewMockStub("PeerConfiger", e)

0 commit comments

Comments
 (0)