Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions pkg/constants/constants_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -511,14 +511,6 @@ func TestTypeSafetyBetweenSemanticTypes(t *testing.T) {
if string(step1) != "check_membership" {
t.Errorf("StepID string conversion failed: got %q, want %q", step1, "check_membership")
}

// Verify that different semantic types have different underlying types
// (this is a compile-time check, but we verify the values are correct)
jobStr := string(AgentJobName)
stepStr := string(CheckMembershipStepID)
_ = jobStr // Used for demonstration
_ = stepStr // Used for demonstration
// Different semantic types prevent accidental mixing even if string values match
}

// TestHelperMethods tests the helper methods on semantic types
Expand Down
7 changes: 0 additions & 7 deletions pkg/repoutil/repoutil_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,6 @@ func TestSplitRepoSlug(t *testing.T) {
}
}

func BenchmarkSplitRepoSlug(b *testing.B) {
slug := "github/gh-aw"
for b.Loop() {
_, _, _ = SplitRepoSlug(slug)
}
}

// Additional edge case tests

func TestSplitRepoSlug_Whitespace(t *testing.T) {
Expand Down
Loading