@@ -78,7 +78,7 @@ describe('model integration test for single model and MID', () => {
7878 } )
7979 const documentStream = await modelInstanceClient . createSingleton ( {
8080 model : modelStream ,
81- controller : authenticatedDID . id ,
81+ controller : authenticatedDID ,
8282 } )
8383
8484 // Use the flightsql stream behavior to ensure the events states have been process before querying their states.
@@ -97,7 +97,7 @@ describe('model integration test for single model and MID', () => {
9797 } )
9898 const documentStream = await modelInstanceClient . createSingleton ( {
9999 model : modelStream ,
100- controller : authenticatedDID . id ,
100+ controller : authenticatedDID ,
101101 } )
102102 // Use the flightsql stream behavior to ensure the events states have been process before querying their states.
103103 await waitForEventState ( flightClient , documentStream . commit )
@@ -117,11 +117,11 @@ describe('model integration test for single model and MID', () => {
117117 } )
118118 const documentStream1 = await modelInstanceClient . createSingleton ( {
119119 model : modelStream ,
120- controller : authenticatedDID . id ,
120+ controller : authenticatedDID ,
121121 } )
122122 const documentStream2 = await modelInstanceClient . createSingleton ( {
123123 model : modelStream ,
124- controller : authenticatedDID . id ,
124+ controller : authenticatedDID ,
125125 } )
126126 expect ( documentStream1 . baseID ) . toEqual ( documentStream2 . baseID )
127127 } )
@@ -138,11 +138,11 @@ describe('model integration test for single model and MID', () => {
138138 } )
139139 const documentStream1 = await modelInstanceClient1 . createSingleton ( {
140140 model : modelStream ,
141- controller : authenticatedDID1 . id ,
141+ controller : authenticatedDID1 ,
142142 } )
143143 const documentStream2 = await modelInstanceClient2 . createSingleton ( {
144144 model : modelStream ,
145- controller : authenticatedDID2 . id ,
145+ controller : authenticatedDID2 ,
146146 } )
147147 expect ( documentStream1 . baseID ) . not . toEqual ( documentStream2 . baseID )
148148 } )
0 commit comments