Skip to content

Commit

Permalink
test bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirish committed Sep 5, 2024
1 parent 49f50e8 commit ec5dc63
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions tests/Model/LocationCategoryTest.php
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<?php

namespace Dynamic\Elements\Locations\Test;
namespace Dynamic\Locations\Test;

use SilverStripe\Forms\FieldList;
use SilverStripe\Dev\SapphireTest;
use Dynamic\Elements\Locations\Model\LocationCategory;
use Dynamic\Locations\Model\LocationCategory;

class LocationCategoryTest extends SapphireTest
{
/**
* @var string
*/
protected static string $fixture_file = 'location-category.yml';
protected static $fixture_file = 'location-category.yml';

/**
* Test the CMS Fields
Expand Down
6 changes: 3 additions & 3 deletions tests/Model/LocationTest.php
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<?php

namespace Dynamic\Elements\Locations\Test;
namespace Dynamic\Locations\Test;

use SilverStripe\Forms\FieldList;
use SilverStripe\Dev\SapphireTest;
use Dynamic\Elements\Locations\Model\Location;
use Dynamic\Locations\Model\Location;

class LocationTest extends SapphireTest
{
/**
* @var string
*/
protected static string $fixture_file = 'location.yml';
protected static $fixture_file = 'location.yml';

/**
* Test the CMS Fields
Expand Down
2 changes: 1 addition & 1 deletion tests/Model/location-category.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Dynamic\Elements\Locations\Model\LocationCategory:
Dynamic\Locations\Model\LocationCategory:
one:
Title: "Location Category One"
2 changes: 1 addition & 1 deletion tests/Model/location.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Dynamic\Elements\Locations\Model\Location:
Dynamic\Locations\Model\Location:
one:
Title: "Location One"

0 comments on commit ec5dc63

Please sign in to comment.