diff --git a/src/test/java/io/cameleer/saas/license/LicenseControllerTest.java b/src/test/java/io/cameleer/saas/license/LicenseControllerTest.java index 5e6d646..9aeb4b4 100644 --- a/src/test/java/io/cameleer/saas/license/LicenseControllerTest.java +++ b/src/test/java/io/cameleer/saas/license/LicenseControllerTest.java @@ -60,7 +60,7 @@ class LicenseControllerTest { new SimpleGrantedAuthority("SCOPE_platform:admin")))) .andExpect(status().isCreated()) .andExpect(jsonPath("$.token").isNotEmpty()) - .andExpect(jsonPath("$.tier").value("TEAM")); + .andExpect(jsonPath("$.tier").value("STARTER")); } @Test @@ -77,7 +77,7 @@ class LicenseControllerTest { .with(jwt().jwt(j -> j.claim("sub", "test-user")) .authorities(new SimpleGrantedAuthority("SCOPE_platform:admin")))) .andExpect(status().isOk()) - .andExpect(jsonPath("$.tier").value("TEAM")); + .andExpect(jsonPath("$.tier").value("STARTER")); } @Test