@@ -333,7 +333,6 @@ func (suite *AttachFunctionTestSuite) TestAttachFunction_IdempotentRequest_Alrea
333333 OutputCollectionName : outputCollectionName ,
334334 FunctionID : functionID ,
335335 MinRecordsForInvocation : int64 (MinRecordsForInvocation ),
336- NextRun : now ,
337336 CreatedAt : now ,
338337 UpdatedAt : now ,
339338 }
@@ -480,7 +479,6 @@ func (suite *AttachFunctionTestSuite) TestAttachFunction_RecoveryFlow_HeapFailur
480479 OutputCollectionName : outputCollectionName ,
481480 FunctionID : functionID ,
482481 MinRecordsForInvocation : int64 (MinRecordsForInvocation ),
483- NextRun : now ,
484482 CreatedAt : now ,
485483 UpdatedAt : now ,
486484 }
@@ -585,7 +583,6 @@ func (suite *AttachFunctionTestSuite) TestAttachFunction_IdempotentRequest_Param
585583 OutputCollectionName : outputCollectionName ,
586584 FunctionID : existingOperatorID ,
587585 MinRecordsForInvocation : int64 (MinRecordsForInvocation ),
588- NextRun : now ,
589586 CreatedAt : now ,
590587 UpdatedAt : now ,
591588 }
@@ -665,7 +662,6 @@ func TestGetSoftDeletedAttachedFunctions_TimestampConsistency(t *testing.T) {
665662 MinRecordsForInvocation : 10 ,
666663 CreatedAt : testTime ,
667664 UpdatedAt : testTime ,
668- NextRun : testTime ,
669665 },
670666 }
671667
@@ -702,9 +698,6 @@ func TestGetSoftDeletedAttachedFunctions_TimestampConsistency(t *testing.T) {
702698 if af .UpdatedAt != expectedMicros {
703699 t .Errorf ("UpdatedAt timestamp mismatch: expected %d microseconds, got %d" , expectedMicros , af .UpdatedAt )
704700 }
705- if af .NextRunAt != expectedMicros {
706- t .Errorf ("NextRunAt timestamp mismatch: expected %d microseconds, got %d" , expectedMicros , af .NextRunAt )
707- }
708701
709702 // Verify these are NOT in seconds (would be ~1000x smaller)
710703 expectedSeconds := uint64 (testTime .Unix ())
@@ -714,9 +707,6 @@ func TestGetSoftDeletedAttachedFunctions_TimestampConsistency(t *testing.T) {
714707 if af .UpdatedAt == expectedSeconds {
715708 t .Error ("UpdatedAt appears to be in seconds instead of microseconds" )
716709 }
717- if af .NextRunAt == expectedSeconds {
718- t .Error ("NextRunAt appears to be in seconds instead of microseconds" )
719- }
720710
721711 mockMetaDomain .AssertExpectations (t )
722712 mockAttachedFunctionDb .AssertExpectations (t )
0 commit comments