Remove old test that's not needed (#2665)

#### Does this PR need a docs update or release note?

- [ ]  Yes, it's included
- [ ] 🕐 Yes, but in a later PR
- [x]  No

#### Type of change

- [ ] 🌻 Feature
- [ ] 🐛 Bugfix
- [ ] 🗺️ Documentation
- [x] 🤖 Test
- [ ] 💻 CI/Deployment
- [x] 🧹 Tech Debt/Cleanup

#### Issue(s)

* #2373

#### Test Plan

- [ ] 💪 Manual
- [x]  Unit test
- [ ] 💚 E2E
This commit is contained in:
ashmrtn 2023-02-27 15:53:06 -08:00 committed by GitHub
parent 1945db6b65
commit ceb60a1c2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -773,42 +773,6 @@ func (suite *ExchangeSelectorSuite) TestExchangeScope_MatchesPath() {
}
}
func (suite *ExchangeSelectorSuite) TestIdPath() {
table := []struct {
cat exchangeCategory
pth path.Path
expect map[exchangeCategory]string
}{
{
ExchangeContact,
stubPath(suite.T(), "uid", []string{"cFld", "cid"}, path.ContactsCategory),
map[exchangeCategory]string{
ExchangeContactFolder: "cFld",
ExchangeContact: "cid",
},
},
{
ExchangeEvent,
stubPath(suite.T(), "uid", []string{"eCld", "eid"}, path.EventsCategory),
map[exchangeCategory]string{
ExchangeEventCalendar: "eCld",
ExchangeEvent: "eid",
},
},
{
ExchangeMail,
stubPath(suite.T(), "uid", []string{"mFld", "mid"}, path.EmailCategory),
map[exchangeCategory]string{
ExchangeMailFolder: "mFld",
ExchangeMail: "mid",
},
},
}
for _, test := range table {
suite.T().Run(test.cat.String(), func(t *testing.T) {})
}
}
func (suite *ExchangeSelectorSuite) TestExchangeRestore_Reduce() {
var (
contact = stubRepoRef(path.ExchangeService, path.ContactsCategory, "uid", "cfld", "cid")