> + * See the License for the specific language governing permissions and
> + * limitations under the License.
> + */
> +package org.jclouds.openstack.swift.utils;
> +
> +import org.testng.annotations.Test;
> +
> +import static org.testng.Assert.assertEquals;
> +
> +/**
> + * @author Francis Devereux
> + */
> +@Test(groups = "unit")
> +public class ETagUtilsTest {
> + @Test
> + public void testNoExceptionUnquotingSingleDQuote() {
Ah, thanks for the link.
> Check for eTag.length() >= 2?
@andrewgaul: is `"` a valid eTag that we should be attempting to deal with
here? Otherwise a regex replace for `\\"(.*)\\"` should work too?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/120/files#r5913900