Commit 9001b477894f118f101650bc89581b8f921006f1
1 parent
83759951
Exists in
master
Ajustes nos testes de tipos básicos
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
impl/core/src/test/java/br/gov/frameworkdemoiselle/configuration/field/basic/ConfigurationBasicFieldTest.java
... | ... | @@ -83,7 +83,7 @@ public class ConfigurationBasicFieldTest extends AbstractConfigurationTest { |
83 | 83 | System.setProperty("primitiveInteger", String.valueOf(1)); |
84 | 84 | System.setProperty("wrappedInteger", String.valueOf(2)); |
85 | 85 | System.setProperty("stringWithSpace", String.valueOf("demoiselle framework")); |
86 | - System.setProperty("stringWithComma", String.valueOf("demoiselle,framework")); | |
86 | + System.setProperty("stringWithComma", String.valueOf("demoiselle, framework")); | |
87 | 87 | } |
88 | 88 | |
89 | 89 | @Test |
... | ... | @@ -115,7 +115,7 @@ public class ConfigurationBasicFieldTest extends AbstractConfigurationTest { |
115 | 115 | |
116 | 116 | @Test |
117 | 117 | public void loadStringWithComma() { |
118 | - String expected = "demoiselle,framework"; | |
118 | + String expected = "demoiselle, framework"; | |
119 | 119 | |
120 | 120 | assertEquals(expected, systemConfig.getStringWithComma()); |
121 | 121 | assertEquals(expected, propertiesConfig.getStringWithComma()); | ... | ... |