public void HeaderDictionaryWithExistingKeyCanResetAKeysValue()
		{
			var subject = new HeaderDictionary();
			subject.Include("k", "v1");
			subject.Include("k", "v2");
			subject.Set("k", "v0");

			Assert.That(subject["k"], Is.EquivalentTo(new[]{"v0"}));
		}