@@ -286,7 +286,6 @@ func (suite *AttachFunctionTestSuite) TestAttachFunction_IdempotentRequest_Alrea
286286 OutputCollectionName : outputCollectionName ,
287287 FunctionID : functionID ,
288288 MinRecordsForInvocation : int64 (MinRecordsForInvocation ),
289- NextRun : now ,
290289 CreatedAt : now ,
291290 UpdatedAt : now ,
292291 }
@@ -425,7 +424,6 @@ func (suite *AttachFunctionTestSuite) TestAttachFunction_RecoveryFlow() {
425424 OutputCollectionName : outputCollectionName ,
426425 FunctionID : functionID ,
427426 MinRecordsForInvocation : int64 (MinRecordsForInvocation ),
428- NextRun : now ,
429427 CreatedAt : now ,
430428 UpdatedAt : now ,
431429 }
@@ -516,7 +514,6 @@ func (suite *AttachFunctionTestSuite) TestAttachFunction_IdempotentRequest_Param
516514 OutputCollectionName : outputCollectionName ,
517515 FunctionID : existingOperatorID ,
518516 MinRecordsForInvocation : int64 (MinRecordsForInvocation ),
519- NextRun : now ,
520517 CreatedAt : now ,
521518 UpdatedAt : now ,
522519 }
@@ -595,7 +592,6 @@ func TestGetSoftDeletedAttachedFunctions_TimestampConsistency(t *testing.T) {
595592 MinRecordsForInvocation : 10 ,
596593 CreatedAt : testTime ,
597594 UpdatedAt : testTime ,
598- NextRun : testTime ,
599595 },
600596 }
601597
@@ -632,9 +628,6 @@ func TestGetSoftDeletedAttachedFunctions_TimestampConsistency(t *testing.T) {
632628 if af .UpdatedAt != expectedMicros {
633629 t .Errorf ("UpdatedAt timestamp mismatch: expected %d microseconds, got %d" , expectedMicros , af .UpdatedAt )
634630 }
635- if af .NextRunAt != expectedMicros {
636- t .Errorf ("NextRunAt timestamp mismatch: expected %d microseconds, got %d" , expectedMicros , af .NextRunAt )
637- }
638631
639632 // Verify these are NOT in seconds (would be ~1000x smaller)
640633 expectedSeconds := uint64 (testTime .Unix ())
@@ -644,9 +637,6 @@ func TestGetSoftDeletedAttachedFunctions_TimestampConsistency(t *testing.T) {
644637 if af .UpdatedAt == expectedSeconds {
645638 t .Error ("UpdatedAt appears to be in seconds instead of microseconds" )
646639 }
647- if af .NextRunAt == expectedSeconds {
648- t .Error ("NextRunAt appears to be in seconds instead of microseconds" )
649- }
650640
651641 mockMetaDomain .AssertExpectations (t )
652642 mockAttachedFunctionDb .AssertExpectations (t )
0 commit comments