@@ -4,7 +4,7 @@ package sumoLog4gofakes
44import (
55 "sync"
66
7- "bitbucket.org/mcplusa-ondemand/firehouse-to-sumologic/sumolog4go "
7+ "bitbucket.org/mcplusa-ondemand/firehouse-to-sumologic/sumoCFFirehose "
88)
99
1010type FakeSumoLog4go struct {
@@ -14,11 +14,10 @@ type FakeSumoLog4go struct {
1414 connectReturns struct {
1515 result1 bool
1616 }
17- AppendLogsStub func (map [string ]interface {}, string )
17+ AppendLogsStub func (map [string ]interface {})
1818 AppendLogsMutex sync.RWMutex
1919 AppendLogsArgsForCall []struct {
2020 arg1 map [string ]interface {}
21- arg2 string
2221 }
2322 invocations map [string ][][]interface {}
2423 invocationsMutex sync.RWMutex
@@ -49,16 +48,16 @@ func (fake *FakeSumoLog4go) ConnectReturns(result1 bool) {
4948 }{result1 }
5049}
5150
52- func (fake * FakeSumoLog4go ) AppendLogs (arg1 map [string ]interface {}, arg2 string ) {
51+ func (fake * FakeSumoLog4go ) AppendLogs (arg1 map [string ]interface {}) {
5352 fake .AppendLogsMutex .Lock ()
5453 fake .AppendLogsArgsForCall = append (fake .AppendLogsArgsForCall , struct {
5554 arg1 map [string ]interface {}
56- arg2 string
57- }{arg1 , arg2 })
58- fake .recordInvocation ("ShipEvents" , []interface {}{arg1 , arg2 })
55+ // arg2 string
56+ }{arg1 /* , arg2*/ })
57+ fake .recordInvocation ("ShipEvents" , []interface {}{arg1 /* , arg2*/ })
5958 fake .AppendLogsMutex .Unlock ()
6059 if fake .AppendLogsStub != nil {
61- fake .AppendLogsStub (arg1 , arg2 )
60+ fake .AppendLogsStub (arg1 /* , arg2*/ )
6261 }
6362}
6463
@@ -68,10 +67,10 @@ func (fake *FakeSumoLog4go) ShipEventsCallCount() int {
6867 return len (fake .AppendLogsArgsForCall )
6968}
7069
71- func (fake * FakeSumoLog4go ) ShipEventsArgsForCall (i int ) ( map [string ]interface {}, string ) {
70+ func (fake * FakeSumoLog4go ) ShipEventsArgsForCall (i int ) map [string ]interface {} {
7271 fake .AppendLogsMutex .RLock ()
7372 defer fake .AppendLogsMutex .RUnlock ()
74- return fake .AppendLogsArgsForCall [i ].arg1 , fake . AppendLogsArgsForCall [ i ]. arg2
73+ return fake .AppendLogsArgsForCall [i ].arg1
7574}
7675
7776func (fake * FakeSumoLog4go ) Invocations () map [string ][][]interface {} {
@@ -96,4 +95,4 @@ func (fake *FakeSumoLog4go) recordInvocation(key string, args []interface{}) {
9695 fake .invocations [key ] = append (fake .invocations [key ], args )
9796}
9897
99- var _ sumoLog4go. SumoLog4go = new (FakeSumoLog4go )
98+ var _ sumoCFFirehose. SumoCFFirehose = new (FakeSumoLog4go )
0 commit comments