public async void CanImportRepeatingInstrumentsAndEvents_ShouldReturn_string()
        {
            // exact instrument names in data dictionary to repeat
            var repeatingInstruments = new List <RedcapRepeatInstrument> {
                new RedcapRepeatInstrument {
                    EventName       = "event_1_arm_1",
                    FormName        = "demographics",
                    CustomFormLabel = "TestTestTest"
                }
            };
            var result = await _redcapApi.ImportRepeatingInstrumentsAndEvents(_token, repeatingInstruments);

            // Expect "1" as we are importing a single repeating instrument
            Assert.Contains("1", result);
        }