Skip to content

Commit

Permalink
Changing names of stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
scott-lewis-nsidc committed Sep 12, 2023
1 parent 60c10cb commit c97021b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Clone the repository, and install all requirements as noted below.
#### Configuration

Once you have the code and requirements, edit the configuration file in
`lib/search_solr_tools/config/environments.yaml` to match your environment. The
`lib/search_solr_tools_test/config/environments.yaml` to match your environment. The
configuration values are set by environment for each harvester (or specified in
the `common` settings list), with the environment overriding `common` if a
different setting is specified for a given environment.
Expand Down Expand Up @@ -167,7 +167,7 @@ Outside of NSIDC, setup solr using the instructions found in the

The harvester requires additional metadata from services that may not yet be
publicly available, which are referenced in
`lib/search_solr_tools/config/environments.yaml`.
`lib/search_solr_tools_test/config/environments.yaml`.

To utilize the gem, build and install the **search_solr_tools** gem. This will
add an executable `search_solr_tools` to the path (source is in
Expand Down
4 changes: 2 additions & 2 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
require 'webmock/rspec'

require 'search_solr_tools_test'
require 'search_solr_tools/helpers/solr_format'
require 'search_solr_tools/helpers/harvest_status'
require 'search_solr_tools_test/helpers/solr_format'
require 'search_solr_tools_test/helpers/harvest_status'

GZIP_DEFLATE_IDENTITY = 'gzip;q=1.0,deflate;q=0.6,identity;q=0.3'

Expand Down
2 changes: 1 addition & 1 deletion spec/unit/errors/harvest_error_spec.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

require 'spec_helper'
require 'search_solr_tools/errors/harvest_error'
require 'search_solr_tools_test/errors/harvest_error'

describe SearchSolrTools::Errors::HarvestError do
let(:status) { SearchSolrTools::Helpers::HarvestStatus.new }
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/helpers/translate_spatial_coverage_spec.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

require 'spec_helper'
require 'search_solr_tools/helpers/translate_spatial_coverage'
require 'search_solr_tools_test/helpers/translate_spatial_coverage'

describe SearchSolrTools::Helpers::TranslateSpatialCoverage do
it 'translates GeoJSON polygon to spatial display str' do
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/helpers/translate_temporal_coverage_spec.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

require 'spec_helper'
require 'search_solr_tools/helpers/translate_temporal_coverage'
require 'search_solr_tools_test/helpers/translate_temporal_coverage'

describe SearchSolrTools::Helpers::TranslateTemporalCoverage do
it 'generates temporal values from JSON' do
Expand Down

0 comments on commit c97021b

Please sign in to comment.